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