author | truelight |
Fri, 04 May 2007 22:59:59 +0000 | |
branch | noai |
changeset 9617 | df9cedf12aab |
parent 9596 | 8af5a1399842 |
child 9743 | 4c44aa6a8f43 |
permissions | -rw-r--r-- |
#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); }