Update: Translations from eints
[openttd-github.git] / src / saveload / compat / object_sl_compat.h
bloba4a9fca6a815c8144f71dd0d62f2ca6dd76ddae0
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file object_sl_compat.h Loading of object chunks before table headers were added. */
10 #ifndef SAVELOAD_COMPAT_OBJECT_H
11 #define SAVELOAD_COMPAT_OBJECT_H
13 #include "../saveload.h"
15 /** Original field order for _object_desc. */
16 const SaveLoadCompat _object_sl_compat[] = {
17 SLC_VAR("location.tile"),
18 SLC_VAR("location.w"),
19 SLC_VAR("location.h"),
20 SLC_VAR("town"),
21 SLC_VAR("build_date"),
22 SLC_VAR("colour"),
23 SLC_VAR("view"),
24 SLC_VAR("type"),
27 #endif /* SAVELOAD_COMPAT_OBJECT_H */