RuneHive-Game
Loading...
Searching...
No Matches
UpdatePriority.java
Go to the documentation of this file.
1
package
com.runehive.game;
2
3
/**
4
* Represents different priorities for updating.
5
*
6
* @author Michael | Chex
7
*/
8
public
enum
UpdatePriority
{
9
10
/** A very low priority. */
11
VERY_LOW
,
12
13
/** A low priority. */
14
LOW
,
15
16
/** A normal priority. */
17
NORMAL
,
18
19
/** A high priority. */
20
HIGH
,
21
22
/** A very high priority. */
23
VERY_HIGH
24
25
}
com.runehive.game.UpdatePriority
Represents different priorities for updating.
Definition
UpdatePriority.java:8
com.runehive.game.UpdatePriority.NORMAL
NORMAL
A normal priority.
Definition
UpdatePriority.java:17
com.runehive.game.UpdatePriority.VERY_HIGH
VERY_HIGH
A very high priority.
Definition
UpdatePriority.java:23
com.runehive.game.UpdatePriority.LOW
LOW
A low priority.
Definition
UpdatePriority.java:14
com.runehive.game.UpdatePriority.VERY_LOW
VERY_LOW
A very low priority.
Definition
UpdatePriority.java:11
com.runehive.game.UpdatePriority.HIGH
HIGH
A high priority.
Definition
UpdatePriority.java:20