Roguelike
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
self_damage.h
Go to the documentation of this file.
1 #ifndef ROGUELIKE_ACTION_SKILL_SELF_DAMAGE_H_
2 #define ROGUELIKE_ACTION_SKILL_SELF_DAMAGE_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 SelfDamage : public Self {
22  typedef Self super;
23  public:
24  SelfDamage();
26 };
27 
28 } // namespace skill
29 } // namespace action
30 } // namespace game
31 
32 #endif // ROGUELIKE_ACTION_SKILL_SELF_DAMAGE_H_
Definition: aim.cc:15
SelfDamage()
Definition: self_damage.cc:32
~SelfDamage()
Definition: self_damage.h:25
Definition: self_damage.h:21
Definition: self.h:31
Definition: skill.h:48