RuneHive-Game
Loading...
Searching...
No Matches
RequestState.java
Go to the documentation of this file.
1package 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 */
8public enum RequestState {
9
10 /** Nobody has offered a request. */
12
13 /** Somebody has offered some kind of request. */
15
16 /**
17 * The player is participating in an existing request of this type, so
18 * cannot accept new requests at all.
19 */
21}
Holds the different states the manager can be in.
PARTICIPATING
The player is participating in an existing request of this type, so cannot accept new requests at all...
REQUESTED
Somebody has offered some kind of request.