RuneHive-Game
Loading...
Searching...
No Matches
TradeStage.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity.mob.player.exchange.trade;
2
3
/**
4
* The enumerated types who's elements represent the stages of a trade
5
* session.
6
*
7
* @author Daniel
8
*/
9
public
enum
TradeStage
{
10
11
/**
12
* The stage before the session between two players is created.
13
*/
14
REQUEST
,
15
16
/**
17
* The stage when two players are able to offer items.
18
*/
19
OFFER
,
20
21
/**
22
* The stage when two players initially accept each others offers.
23
*/
24
FIRST_ACCEPT
,
25
26
/**
27
* The stage that validates both offers.
28
*/
29
FINAL_ACCEPT
30
}
com.runehive.game.world.entity.mob.player.exchange.trade.TradeStage
The enumerated types who's elements represent the stages of a trade session.
Definition
TradeStage.java:9
com.runehive.game.world.entity.mob.player.exchange.trade.TradeStage.OFFER
OFFER
The stage when two players are able to offer items.
Definition
TradeStage.java:19
com.runehive.game.world.entity.mob.player.exchange.trade.TradeStage.FINAL_ACCEPT
FINAL_ACCEPT
The stage that validates both offers.
Definition
TradeStage.java:29
com.runehive.game.world.entity.mob.player.exchange.trade.TradeStage.REQUEST
REQUEST
The stage before the session between two players is created.
Definition
TradeStage.java:14
com.runehive.game.world.entity.mob.player.exchange.trade.TradeStage.FIRST_ACCEPT
FIRST_ACCEPT
The stage when two players initially accept each others offers.
Definition
TradeStage.java:24