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