Adds MultiEconomy#getName and MultiEconomy#isEnabled

This commit is contained in:
lbenav8095 2023-03-22 10:50:21 -06:00
parent 9ff701c3e3
commit 19801e59c9
1 changed files with 14 additions and 0 deletions

View File

@ -10,6 +10,20 @@ import java.util.Collection;
*/
public interface MultiEconomy {
/**
* Checks if MultiEconomy method is enabled.
*
* @return Success or Failure
*/
public boolean isEnabled();
/**
* Gets name of MultiEconomy method
*
* @return Name of Economy Method
*/
public String getName();
/**
* Checks to see if a name of the implementation exists with this name.
*