RuneHive-Game
Loading...
Searching...
No Matches
ExchangeCompletionType.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity.mob.player.exchange;
2
3
/**
4
* @author <a href="http://www.rune-server.org/members/stand+up/">Stand Up</a>
5
* @since 23-1-2017.
6
*/
7
public
enum
ExchangeCompletionType
{
8
/**
9
* Determines the items should be restored to the belonging owners.
10
*/
11
RESTORE
,
12
13
/**
14
* Determines the items should be disposed.
15
*/
16
DISPOSE
,
17
18
/**
19
* Determines the items should be halted.
20
*/
21
HALT
22
23
}
com.runehive.game.world.entity.mob.player.exchange.ExchangeCompletionType
Definition
ExchangeCompletionType.java:7
com.runehive.game.world.entity.mob.player.exchange.ExchangeCompletionType.HALT
HALT
Determines the items should be halted.
Definition
ExchangeCompletionType.java:21
com.runehive.game.world.entity.mob.player.exchange.ExchangeCompletionType.DISPOSE
DISPOSE
Determines the items should be disposed.
Definition
ExchangeCompletionType.java:16
com.runehive.game.world.entity.mob.player.exchange.ExchangeCompletionType.RESTORE
RESTORE
Determines the items should be restored to the belonging owners.
Definition
ExchangeCompletionType.java:11