summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_controller.hpp.sq
blob: 911fe42b6d5dda611c4e5aa9e05da2d0b43f77a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $Id$ */

#include "ai_controller.hpp"

void SQAIController_Register(Squirrel *engine) {
	DefSQClass <AIController> SQAIController("AIController");
	SQAIController.PreRegister(engine);
	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);
}