RuneHive-Game
Loading...
Searching...
No Matches
RequestState.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity.mob.player.requests;
2
3
/**
4
* Holds the different states the manager can be in.
5
*
6
* @author Graham Edgecombe
7
*/
8
public
enum
RequestState
{
9
10
/** Nobody has offered a request. */
11
NORMAL
,
12
13
/** Somebody has offered some kind of request. */
14
REQUESTED
,
15
16
/**
17
* The player is participating in an existing request of this type, so
18
* cannot accept new requests at all.
19
*/
20
PARTICIPATING
21
}
com.runehive.game.world.entity.mob.player.requests.RequestState
Holds the different states the manager can be in.
Definition
RequestState.java:8
com.runehive.game.world.entity.mob.player.requests.RequestState.NORMAL
NORMAL
Nobody has offered a request.
Definition
RequestState.java:11
com.runehive.game.world.entity.mob.player.requests.RequestState.PARTICIPATING
PARTICIPATING
The player is participating in an existing request of this type, so cannot accept new requests at all...
Definition
RequestState.java:20
com.runehive.game.world.entity.mob.player.requests.RequestState.REQUESTED
REQUESTED
Somebody has offered some kind of request.
Definition
RequestState.java:14