liblcf
Loading...
Searching...
No Matches
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
18namespace LMT_Reader {
20 enum Index {
22 troop_id = 0x01
23 };
24 };
25 struct ChunkMapInfo {
26 enum Index {
28 name = 0x01,
30 parent_map = 0x02,
34 type = 0x04,
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 {
68 party_x = 0x02,
70 party_y = 0x03,
74 boat_x = 0x0C,
76 boat_y = 0x0D,
80 ship_x = 0x16,
82 ship_y = 0x17,
86 airship_x = 0x20,
88 airship_y = 0x21
89 };
90 };
91}
92
93#endif