(svn r20563) -Change: [NoAI] rename AIAbstractList to AIList

This commit is contained in:
yexo
2010-08-19 15:37:28 +00:00
parent 6c7384cabd
commit dc303e550b
48 changed files with 293 additions and 287 deletions

View File

@@ -23,7 +23,7 @@ namespace SQConvert {
void SQAITileList_Register(Squirrel *engine)
{
DefSQClass <AITileList> SQAITileList("AITileList");
SQAITileList.PreRegister(engine, "AIAbstractList");
SQAITileList.PreRegister(engine, "AIList");
SQAITileList.AddConstructor<void (AITileList::*)(), 1>(engine, "x");
SQAITileList.DefSQMethod(engine, &AITileList::AddRectangle, "AddRectangle", 3, "xii");