|
Quilt Loader 1
|
Public Member Functions | |
| void | addToClassPath (Path path, String... allowedPrefixes) |
| void | setAllowedPrefixes (Path path, String... prefixes) |
| EnvType | getEnvironmentType () |
| boolean | isClassLoaded (String name) |
| Class<?> | loadIntoTarget (String name) throws ClassNotFoundException |
| Load a class into the game's class loader even if its bytes are only available from the parent class loader. | |
| InputStream | getResourceAsStream (String name) |
| ClassLoader | getTargetClassLoader () |
| byte[] | getClassByteArray (String name, boolean runTransformers) throws IOException |
| Gets the byte array for a particular class. | |
| Manifest | getManifest (Path originPath) |
| boolean | isDevelopment () |
| String | getEntrypoint () |
| String | getTargetNamespace () |
| List< Path > | getClassPath () |
| byte[] net.fabricmc.loader.impl.launch.FabricLauncher.getClassByteArray | ( | String | name, |
| boolean | runTransformers ) throws IOException |
Gets the byte array for a particular class.
| name | The name of the class to retrieve |
| runTransformers | Whether to run all transformers except mixin on the class |
Implemented in net.fabricmc.loader.impl.launch.FabricLauncherBase.
| Class<?> net.fabricmc.loader.impl.launch.FabricLauncher.loadIntoTarget | ( | String | name | ) | throws ClassNotFoundException |
Load a class into the game's class loader even if its bytes are only available from the parent class loader.
Implemented in net.fabricmc.loader.impl.launch.FabricLauncherBase.