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