mcMMO/src/main/java/com/gmail/nossr50/util/compat/CompatibilityLayer.java

13 lines
382 B
Java
Raw Normal View History

2020-04-25 05:21:21 +02:00
package com.gmail.nossr50.util.compat;
/**
* Compatibility Layers should be named after the functionality they serve
*/
public interface CompatibilityLayer {
/**
* Whether or not this CompatibilityLayer successfully initialized and in theory should be functional
* @return true if this CompatibilityLayer is functional
*/
boolean noErrorsOnInitialize();
}