Added services manager framework. Services are interfaces that specifies capabilities to be implemented by providers. Example services include economy, <insert example 2>, etc.
This commit is contained in:
12
src/main/java/org/bukkit/plugin/ServicePriority.java
Normal file
12
src/main/java/org/bukkit/plugin/ServicePriority.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package org.bukkit.plugin;
|
||||
|
||||
/**
|
||||
* Represents various priorities of a provider.
|
||||
*/
|
||||
public enum ServicePriority {
|
||||
Lowest,
|
||||
Low,
|
||||
Normal,
|
||||
High,
|
||||
Highest
|
||||
}
|
||||
Reference in New Issue
Block a user