OpenTTD Source 20241224-master-gee860a5c8e
airport_sl.cpp
Go to the documentation of this file.
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 */
7
10#include "../stdafx.h"
11
12#include "saveload.h"
13#include "newgrf_sl.h"
14
15#include "../safeguards.h"
16
20
22 ATIDChunkHandler() : NewGRFMappingChunkHandler('ATID', _airporttile_mngr) {}
23};
24
25static const ATIDChunkHandler ATID;
26static const APIDChunkHandler APID;
27static const ChunkHandlerRef airport_chunk_handlers[] = {
28 ATID,
29 APID,
30};
31
32extern const ChunkHandlerTable _airport_chunk_handlers(airport_chunk_handlers);
Code handling saving and loading of NewGRF mappings.
Functions/types related to saving and loading games.
std::reference_wrapper< const ChunkHandler > ChunkHandlerRef
A reference to ChunkHandler.
Definition saveload.h:509
std::span< const ChunkHandlerRef > ChunkHandlerTable
A table of ChunkHandler entries.
Definition saveload.h:512