mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 06:06:45 +01:00
13 lines
382 B
Java
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();
|
||
|
}
|