Argentum Online - Servidor
action_unequip.h
1 #ifndef ACTION_UNEQUIP_H
2 #define ACTION_UNEQUIP_H
3 
4 #include "action.h"
5 
6 class ActionUnequip : public Action {
7  private:
8  SlotId slot;
9 
10  public:
11  ActionUnequip(SlotId slot);
12 
13  void execute(Map& map, EntityId entity_id) const override;
14 };
15 
16 #endif // ACTION_UNEQUIP_H
ActionUnequip
Definition: action_unequip.h:6
Action
Definition: action.h:9
Map
Definition: map.h:47