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