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:
sk89q
2011-05-02 11:31:00 -07:00
parent 267814484a
commit 67f1d7b041
6 changed files with 469 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package org.bukkit.plugin;
/**
* Represents various priorities of a provider.
*/
public enum ServicePriority {
Lowest,
Low,
Normal,
High,
Highest
}