Add rendering API definition
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.seibel.distanthorizons.api.enums.config;
|
||||
|
||||
import com.seibel.distanthorizons.coreapi.ModInfo;
|
||||
|
||||
/**
|
||||
* AUTO, <br>
|
||||
* OPEN_GL, <br>
|
||||
* BLAZE_3D, <br><br>
|
||||
*
|
||||
* @since API 6.0.0
|
||||
* @version 2024-6-8
|
||||
*/
|
||||
public enum EDhApiRenderApi
|
||||
{
|
||||
AUTO,
|
||||
OPEN_GL,
|
||||
BLAZE_3D;
|
||||
|
||||
}
|
||||
+5
@@ -74,6 +74,11 @@ public class DependencyInjector<BindableType extends IBindable> implements IDepe
|
||||
throw new IllegalStateException("The dependency [" + dependencyInterface.getSimpleName() + "] has already been bound.");
|
||||
}
|
||||
|
||||
if (dependencyImplementation == null)
|
||||
{
|
||||
throw new NullPointerException("Can't bind null to ["+dependencyInterface.getSimpleName()+"]");
|
||||
}
|
||||
|
||||
|
||||
// make sure the given dependency implements the necessary interfaces
|
||||
boolean implementsInterface = this.checkIfClassImplements(dependencyImplementation.getClass(), dependencyInterface) ||
|
||||
|
||||
Reference in New Issue
Block a user