(svn r12216) [NoAI] -Codechange: made most functions 'static', which removes the need to create an instance to get, for example, engine information, and therefor heavily simplifying AI creation (Morloth)
#include "ai_controller.hpp"
void SQAIControllerRegister(Squirrel *engine) {
DefSQClass <AIControllerSquirrel> SQAIController("AIController");
SQAIController.PreRegister(engine);
SQAIController.DefSQMethod(engine, &AIControllerSquirrel::GetTick, "GetTick");
SQAIController.DefSQMethod(engine, &AIControllerSquirrel::Sleep, "Sleep");
SQAIController.PostRegister(engine);
}