liblcf
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
rpg_troop.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_TROOP_H
10 #define LCF_RPG_TROOP_H
11 
12 // Headers
13 #include <string>
14 #include <vector>
15 #include "rpg_troopmember.h"
16 #include "rpg_trooppage.h"
17 
21 namespace RPG {
22  class Troop {
23  public:
24  Troop();
25 
26  int ID;
27  std::string name;
28  std::vector<TroopMember> members;
30  std::vector<bool> terrain_set;
31  std::vector<TroopPage> pages;
32  };
33 }
34 
35 #endif
bool auto_alignment
Definition: rpg_troop.h:29
std::string name
Definition: rpg_troop.h:27
std::vector< bool > terrain_set
Definition: rpg_troop.h:30
Definition: rpg_actor.h:23
std::vector< TroopPage > pages
Definition: rpg_troop.h:31
std::vector< TroopMember > members
Definition: rpg_troop.h:28