liblcf
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
rpg_enemyaction.h
Go to the documentation of this file.
1 /* !!!! GENERATED FILE - DO NOT EDIT !!!! */
2 
3 /*
4  * Copyright (c) 2014 liblcf authors
5  * This file is released under the MIT License
6  * http://opensource.org/licenses/MIT
7  */
8 
9 #ifndef LCF_RPG_ENEMYACTION_H
10 #define LCF_RPG_ENEMYACTION_H
11 
15 namespace RPG {
16  class EnemyAction {
17  public:
18  enum Kind {
22  };
23  enum Basic {
32  };
42  };
43 
44  EnemyAction();
45 
46  int ID;
47  int kind;
48  int basic;
49  int skill_id;
50  int enemy_id;
54  int switch_id;
55  bool switch_on;
57  bool switch_off;
59  int rating;
60  };
61 }
62 
63 #endif
Definition: rpg_actor.h:23