15 lines
186 B
Java
15 lines
186 B
Java
package mineplex.serverdata;
|
|
|
|
/**
|
|
* Region enumerates the various geographical regions where Mineplex servers are
|
|
* hosted.
|
|
* @author Ty
|
|
*
|
|
*/
|
|
public enum Region
|
|
{
|
|
US,
|
|
EU,
|
|
ALL;
|
|
}
|