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