summaryrefslogtreecommitdiff
path: root/src/script/api/script_objecttypelist.hpp
diff options
context:
space:
mode:
authordP <dp@dpointer.org>2021-09-25 14:39:40 +0300
committerGitHub <noreply@github.com>2021-09-25 13:39:40 +0200
commit39662aabefa851a153b66571a50fd4b78b83ced1 (patch)
tree9498197df55f57c9abb28234dd336f82f5b627bb /src/script/api/script_objecttypelist.hpp
parent66c7d9b8ed9df8de1fc1e5b6c83808683bc6bbd2 (diff)
downloadopenttd-39662aabefa851a153b66571a50fd4b78b83ced1.tar.xz
Add: allow gamescripts to build neutral objects (#9568)
Diffstat (limited to 'src/script/api/script_objecttypelist.hpp')
-rw-r--r--src/script/api/script_objecttypelist.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/script/api/script_objecttypelist.hpp b/src/script/api/script_objecttypelist.hpp
new file mode 100644
index 000000000..0276838e8
--- /dev/null
+++ b/src/script/api/script_objecttypelist.hpp
@@ -0,0 +1,26 @@
+/*
+ * 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 script_objecttypelist.hpp List all available object types. */
+
+#ifndef SCRIPT_OBJECTTYPELIST_HPP
+#define SCRIPT_OBJECTTYPELIST_HPP
+
+#include "script_objecttype.hpp"
+
+/**
+ * Creates a list of valid object types.
+ * @api ai game
+ * @ingroup ScriptList
+ */
+class ScriptObjectTypeList : public ScriptList {
+public:
+ ScriptObjectTypeList();
+};
+
+
+#endif /* SCRIPT_OBJECTTYPELIST_HPP */