liblcf
lsd_savepanorama.cpp
Go to the documentation of this file.
1 /* !!!! GENERATED FILE - DO NOT EDIT !!!!
2  * --------------------------------------
3  *
4  * This file is part of liblcf. Copyright (c) 2021 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 // Headers
13 #include "lcf/lsd/reader.h"
14 #include "lcf/lsd/chunks.h"
15 #include "reader_struct_impl.h"
16 
17 namespace lcf {
18 
19 // Read SavePanorama.
20 
21 template <>
22 char const* const Struct<rpg::SavePanorama>::name = "SavePanorama";
23 static TypedField<rpg::SavePanorama, int32_t> static_pan_x(
24  &rpg::SavePanorama::pan_x,
25  LSD_Reader::ChunkSavePanorama::pan_x,
26  "pan_x",
27  0,
28  0
29 );
30 static TypedField<rpg::SavePanorama, int32_t> static_pan_y(
31  &rpg::SavePanorama::pan_y,
32  LSD_Reader::ChunkSavePanorama::pan_y,
33  "pan_y",
34  0,
35  0
36 );
37 
38 
39 template <>
41  &static_pan_x,
42  &static_pan_y,
43  NULL
44 };
45 
46 template class Struct<rpg::SavePanorama>;
47 
48 } //namespace lcf
Definition: dbarray.cpp:13