RuneHive-Game
Loading...
Searching...
No Matches
WorldType.java
Go to the documentation of this file.
1
package
com.runehive.game.world;
2
3
/**
4
* The OS Royale world types.
5
*
6
* @author Daniel
7
*/
8
public
enum
WorldType
{
9
/**
10
* The main world.
11
*/
12
LIVE
,
13
14
/**
15
* The world used for testing purposes by a team.
16
*/
17
TEST
,
18
19
/**
20
* Local host world used for developers.
21
*/
22
LOCAL
23
}
com.runehive.game.world.WorldType
The OS Royale world types.
Definition
WorldType.java:8
com.runehive.game.world.WorldType.LIVE
LIVE
The main world.
Definition
WorldType.java:12
com.runehive.game.world.WorldType.LOCAL
LOCAL
Local host world used for developers.
Definition
WorldType.java:22
com.runehive.game.world.WorldType.TEST
TEST
The world used for testing purposes by a team.
Definition
WorldType.java:17