mcMMO/src/main/java/com/gmail/nossr50/util/compat/CompatibilityLayer.java
2020-04-24 20:21:21 -07:00

13 lines
382 B
Java

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();
}