summaryrefslogtreecommitdiff
path: root/src/script/api/game/game_event_types.hpp.sq
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2012-05-26 14:16:32 +0000
committerfrosch <frosch@openttd.org>2012-05-26 14:16:32 +0000
commit66a37e28a69411f4666158cce03c6fd29e9a15e1 (patch)
tree5735dafdf64c8ea7e57c1b9592f256ff37ccd687 /src/script/api/game/game_event_types.hpp.sq
parent9ad9d72c4ae6fb28e7381bbd50ddeb2502b7d925 (diff)
downloadopenttd-66a37e28a69411f4666158cce03c6fd29e9a15e1.tar.xz
(svn r24289) -Add: [Script] Base class for script events involving a company and a town.
Diffstat (limited to 'src/script/api/game/game_event_types.hpp.sq')
-rw-r--r--src/script/api/game/game_event_types.hpp.sq16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/script/api/game/game_event_types.hpp.sq b/src/script/api/game/game_event_types.hpp.sq
index 727e90bb1..6faacba44 100644
--- a/src/script/api/game/game_event_types.hpp.sq
+++ b/src/script/api/game/game_event_types.hpp.sq
@@ -266,3 +266,19 @@ void SQGSEventGoalQuestionAnswer_Register(Squirrel *engine)
SQGSEventGoalQuestionAnswer.PostRegister(engine);
}
+
+
+template <> const char *GetClassName<ScriptEventCompanyTown, ST_GS>() { return "GSEventCompanyTown"; }
+
+void SQGSEventCompanyTown_Register(Squirrel *engine)
+{
+ DefSQClass<ScriptEventCompanyTown, ST_GS> SQGSEventCompanyTown("GSEventCompanyTown");
+ SQGSEventCompanyTown.PreRegister(engine, "GSEvent");
+
+ SQGSEventCompanyTown.DefSQStaticMethod(engine, &ScriptEventCompanyTown::Convert, "Convert", 2, ".x");
+
+ SQGSEventCompanyTown.DefSQMethod(engine, &ScriptEventCompanyTown::GetCompanyID, "GetCompanyID", 1, "x");
+ SQGSEventCompanyTown.DefSQMethod(engine, &ScriptEventCompanyTown::GetTownID, "GetTownID", 1, "x");
+
+ SQGSEventCompanyTown.PostRegister(engine);
+}