liblcf
lmt_chunks.h
Go to the documentation of this file.
1 /* !!!! GENERATED FILE - DO NOT EDIT !!!!
2  * --------------------------------------
3  *
4  * This file is part of liblcf. Copyright (c) 2020 liblcf authors.
5  * https://github.com/EasyRPG/liblcf - https://easyrpg.org
6  *
7  * liblcf is Free/Libre Open Source Software, released under the MIT License.
8  * For the full copyright and license information, please view the COPYING
9  * file that was distributed with this source code.
10  */
11 
12 #ifndef LCF_LMT_CHUNKS_H
13 #define LCF_LMT_CHUNKS_H
14 
18 namespace LMT_Reader {
19  struct ChunkEncounter {
20  enum Index {
22  troop_id = 0x01
23  };
24  };
25  struct ChunkMapInfo {
26  enum Index {
28  name = 0x01,
30  parent_map = 0x02,
32  indentation = 0x03,
34  type = 0x04,
36  scrollbar_x = 0x05,
38  scrollbar_y = 0x06,
40  expanded_node = 0x07,
42  music_type = 0x0B,
44  music = 0x0C,
50  teleport = 0x1F,
52  escape = 0x20,
54  save = 0x21,
56  encounters = 0x29,
60  area_rect = 0x33
61  };
62  };
63  struct ChunkStart {
64  enum Index {
66  party_map_id = 0x01,
68  party_x = 0x02,
70  party_y = 0x03,
72  boat_map_id = 0x0B,
74  boat_x = 0x0C,
76  boat_y = 0x0D,
78  ship_map_id = 0x15,
80  ship_x = 0x16,
82  ship_y = 0x17,
86  airship_x = 0x20,
88  airship_y = 0x21
89  };
90  };
91 }
92 
93 #endif