liblcf
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
rpg_battlecommand.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_BATTLECOMMAND_H
10 #define LCF_RPG_BATTLECOMMAND_H
11 
12 // Headers
13 #include <string>
14 
18 namespace RPG {
19  class BattleCommand {
20  public:
21  enum Type {
26  Type_item = 4,
29  };
30 
31  BattleCommand();
32 
33  int ID;
34  std::string name;
35  int type;
36  };
37 }
38 
39 #endif
Definition: rpg_actor.h:23