Roguelike
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
movement_step.h
Go to the documentation of this file.
1 #ifndef ROGUELIKE_ACTION_SKILL_MOVEMENT_STEP_H_
2 #define ROGUELIKE_ACTION_SKILL_MOVEMENT_STEP_H_
3 
4 // Inheritance
6 
7 // External Dependencies
8 // (none)
9 
10 // Internal Dependencies
11 // (none)
12 
13 // Forward Declarations
14 // (none)
15 
16 namespace game {
17 namespace action {
18 namespace skill {
19 
20 class MovementStep : public Movement {
21  typedef Movement super;
22  public:
23  MovementStep();
25 };
26 
27 } // namespace skill
28 } // namespace action
29 } // namespace game
30 
31 #endif // ROGUELIKE_ACTION_SKILL_MOVEMENT_STEP_H_
~MovementStep()
Definition: movement_step.h:24
Definition: aim.cc:15
MovementStep()
Definition: movement_step.cc:92
Definition: movement.h:32
Definition: movement_step.h:20
Definition: skill.h:48