summaryrefslogtreecommitdiff
path: root/src/script/api/game/game_storypagelist.hpp.sq
diff options
context:
space:
mode:
authorzuu <zuu@openttd.org>2014-02-06 19:36:19 +0000
committerzuu <zuu@openttd.org>2014-02-06 19:36:19 +0000
commit14d99c696198c113a7d0516d5524cae1c55ebd82 (patch)
treed7eb8aad2639ac28ebdb8e26f519abc31a654bde /src/script/api/game/game_storypagelist.hpp.sq
parent5165be2698a9d92de4b675b0dece9057e92484bf (diff)
downloadopenttd-14d99c696198c113a7d0516d5524cae1c55ebd82.tar.xz
(svn r26304) -Fix (26303): Forgot to add new files
Diffstat (limited to 'src/script/api/game/game_storypagelist.hpp.sq')
-rw-r--r--src/script/api/game/game_storypagelist.hpp.sq25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/script/api/game/game_storypagelist.hpp.sq b/src/script/api/game/game_storypagelist.hpp.sq
new file mode 100644
index 000000000..99b25a30a
--- /dev/null
+++ b/src/script/api/game/game_storypagelist.hpp.sq
@@ -0,0 +1,25 @@
+/* $Id$ */
+
+/*
+ * 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/>.
+ */
+
+/* THIS FILE IS AUTO-GENERATED; PLEASE DO NOT ALTER MANUALLY */
+
+#include "../script_storypagelist.hpp"
+#include "../template/template_storypagelist.hpp.sq"
+
+
+template <> const char *GetClassName<ScriptStoryPageList, ST_GS>() { return "GSStoryPageList"; }
+
+void SQGSStoryPageList_Register(Squirrel *engine)
+{
+ DefSQClass<ScriptStoryPageList, ST_GS> SQGSStoryPageList("GSStoryPageList");
+ SQGSStoryPageList.PreRegister(engine, "GSList");
+ SQGSStoryPageList.AddConstructor<void (ScriptStoryPageList::*)(ScriptCompany::CompanyID company), 2>(engine, "xi");
+
+ SQGSStoryPageList.PostRegister(engine);
+}