From 9359c6fc47f6fabddc399d044ea74dc6ebfdfb05 Mon Sep 17 00:00:00 2001 From: truebrain Date: Mon, 19 Dec 2011 20:57:34 +0000 Subject: (svn r23615) -Add: more API functions exposed to NoGo (part 2) --- src/script/api/game/game_cargolist.hpp.sq | 61 +++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/script/api/game/game_cargolist.hpp.sq (limited to 'src/script/api/game/game_cargolist.hpp.sq') diff --git a/src/script/api/game/game_cargolist.hpp.sq b/src/script/api/game/game_cargolist.hpp.sq new file mode 100644 index 000000000..00b22b3d7 --- /dev/null +++ b/src/script/api/game/game_cargolist.hpp.sq @@ -0,0 +1,61 @@ +/* $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 . + */ + +/* THIS FILE IS AUTO-GENERATED; PLEASE DO NOT ALTER MANUALLY */ + +#include "../script_cargolist.hpp" +#include "../template/template_cargolist.hpp.sq" + + +template <> const char *GetClassName() { return "GSCargoList"; } + +void SQGSCargoList_Register(Squirrel *engine) +{ + DefSQClass SQGSCargoList("GSCargoList"); + SQGSCargoList.PreRegister(engine, "GSList"); + SQGSCargoList.AddConstructor(engine, "x"); + + SQGSCargoList.PostRegister(engine); +} + + +template <> const char *GetClassName() { return "GSCargoList_IndustryAccepting"; } + +void SQGSCargoList_IndustryAccepting_Register(Squirrel *engine) +{ + DefSQClass SQGSCargoList_IndustryAccepting("GSCargoList_IndustryAccepting"); + SQGSCargoList_IndustryAccepting.PreRegister(engine, "GSList"); + SQGSCargoList_IndustryAccepting.AddConstructor(engine, "xi"); + + SQGSCargoList_IndustryAccepting.PostRegister(engine); +} + + +template <> const char *GetClassName() { return "GSCargoList_IndustryProducing"; } + +void SQGSCargoList_IndustryProducing_Register(Squirrel *engine) +{ + DefSQClass SQGSCargoList_IndustryProducing("GSCargoList_IndustryProducing"); + SQGSCargoList_IndustryProducing.PreRegister(engine, "GSList"); + SQGSCargoList_IndustryProducing.AddConstructor(engine, "xi"); + + SQGSCargoList_IndustryProducing.PostRegister(engine); +} + + +template <> const char *GetClassName() { return "GSCargoList_StationAccepting"; } + +void SQGSCargoList_StationAccepting_Register(Squirrel *engine) +{ + DefSQClass SQGSCargoList_StationAccepting("GSCargoList_StationAccepting"); + SQGSCargoList_StationAccepting.PreRegister(engine, "GSList"); + SQGSCargoList_StationAccepting.AddConstructor(engine, "xi"); + + SQGSCargoList_StationAccepting.PostRegister(engine); +} -- cgit v1.2.3-54-g00ecf