From 4c7106dad78c2f5af4d51813359612ca911f5768 Mon Sep 17 00:00:00 2001 From: yexo Date: Fri, 13 Feb 2009 00:18:56 +0000 Subject: (svn r15462) -Change [NoAI]: Make AIController::GetTick() and AIController::GetSetting() static functions. -Fix (r15460): ai_controller.hpp.sq was forgotten. --- src/ai/api/ai_controller.hpp.sq | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ai/api/ai_controller.hpp.sq') diff --git a/src/ai/api/ai_controller.hpp.sq b/src/ai/api/ai_controller.hpp.sq index 6b465dc66..911fe42b6 100644 --- a/src/ai/api/ai_controller.hpp.sq +++ b/src/ai/api/ai_controller.hpp.sq @@ -5,10 +5,10 @@ void SQAIController_Register(Squirrel *engine) { DefSQClass SQAIController("AIController"); SQAIController.PreRegister(engine); - SQAIController.DefSQMethod(engine, &AIController::GetTick, "GetTick", 1, "x"); - SQAIController.DefSQStaticMethod(engine, &AIController::SetCommandDelay, "SetCommandDelay", 2, "xi"); - SQAIController.DefSQStaticMethod(engine, &AIController::Sleep, "Sleep", 2, "xi"); - SQAIController.DefSQStaticMethod(engine, &AIController::GetSetting, "GetSetting", 2, "xs"); - SQAIController.DefSQStaticMethod(engine, &AIController::Print, "Print", 3, "xbs"); + SQAIController.DefSQStaticMethod(engine, &AIController::GetTick, "GetTick", 1, "?"); + 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::Print, "Print", 3, "?bs"); SQAIController.PostRegister(engine); } -- cgit v1.2.3-54-g00ecf