(svn r16253) -Add [NoAI]: AIController::GetVersion, this returns the newgrf-version of OpenTTD

This commit is contained in:
yexo
2009-05-07 21:33:38 +00:00
parent 0ad4f31658
commit 6ced713033
3 changed files with 19 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ void SQAIController_Register(Squirrel *engine) {
SQAIController.DefSQStaticMethod(engine, &AIController::SetCommandDelay, "SetCommandDelay", 2, ".i");
SQAIController.DefSQStaticMethod(engine, &AIController::Sleep, "Sleep", 2, ".i");
SQAIController.DefSQStaticMethod(engine, &AIController::GetSetting, "GetSetting", 2, ".s");
SQAIController.DefSQStaticMethod(engine, &AIController::GetVersion, "GetVersion", 1, ".");
SQAIController.DefSQStaticMethod(engine, &AIController::Print, "Print", 3, ".bs");
SQAIController.PostRegister(engine);
}