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