Argentum Online - Servidor
action_deposit_gold.h
1 #ifndef ACTION_DEPOSIT_GOLD_H
2 #define ACTION_DEPOSIT_GOLD_H
3 
4 #include "action.h"
5 
6 class ActionDepositGold : public Action {
7  private:
8  position_t target;
9  const uint32_t amount;
10 
11  public:
12  ActionDepositGold(position_t target, uint32_t amount);
13 
14  void execute(Map& map, EntityId entity_id) const override;
15 };
16 
17 #endif // ACTION_DEPOSIT_GOLD_H
ActionDepositGold
Definition: action_deposit_gold.h:6
Action
Definition: action.h:9
Map
Definition: map.h:47
position
Definition: position.h:8