summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_controller.hpp.sq
blob: 6b465dc6663de686433c52aed4fca7ee26273196 (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.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.PostRegister(engine);
}