liblcf
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
rpg_equipment.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_EQUIPMENT_H
10 #define LCF_RPG_EQUIPMENT_H
11 
12 // Headers
13 #include "reader_types.h"
14 
18 namespace RPG {
19  class Equipment {
20  public:
21  Equipment();
22 
23  int16_t weapon_id;
24  int16_t shield_id;
25  int16_t armor_id;
26  int16_t helmet_id;
27  int16_t accessory_id;
28  };
29 }
30 
31 #endif
int16_t weapon_id
Definition: rpg_equipment.h:23
int16_t armor_id
Definition: rpg_equipment.h:25
int16_t shield_id
Definition: rpg_equipment.h:24
Definition: rpg_actor.h:23
int16_t helmet_id
Definition: rpg_equipment.h:26
int16_t accessory_id
Definition: rpg_equipment.h:27