summaryrefslogtreecommitdiff
path: root/src/airport_cmd.h
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2021-10-10 02:35:06 +0200
committerMichael Lutz <michi@icosahedron.de>2021-12-16 22:28:32 +0100
commit123c7f99c342aa9eb7ca505f0b49257fc8eee7ff (patch)
treeeaa3f1c377393e03263a974b7080eacc6f80ae77 /src/airport_cmd.h
parent7048e1522f7095e7c716c2488d78711ab6ed912c (diff)
downloadopenttd-123c7f99c342aa9eb7ca505f0b49257fc8eee7ff.tar.xz
Codechange: Move command callback declarations to the cmd header files.
Diffstat (limited to 'src/airport_cmd.h')
-rw-r--r--src/airport_cmd.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/airport_cmd.h b/src/airport_cmd.h
new file mode 100644
index 000000000..2e27057d8
--- /dev/null
+++ b/src/airport_cmd.h
@@ -0,0 +1,17 @@
+/*
+ * This file is part of OpenTTD.
+ * 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.
+ * 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.
+ * 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/>.
+ */
+
+/** @file airport_cmd.h Command definitions related to airports. */
+
+#ifndef AIRPORT_CMD_H
+#define AIRPORT_CMD_H
+
+#include "command_type.h"
+
+CommandCallback CcBuildAirport;
+
+#endif /* AIRPORT_CMD_H */