(svn r23350) -Add: support different ScriptTypes in the helper functions for GetClassName (Rubidium)
This commit is contained in:
@@ -24,11 +24,11 @@ namespace SQConvert {
|
||||
template <> inline int Return<AIList *>(HSQUIRRELVM vm, AIList *res) { if (res == NULL) { sq_pushnull(vm); return 1; } res->AddRef(); Squirrel::CreateClassInstanceVM(vm, "AIList", res, NULL, DefSQDestructorCallback<AIList>); return 1; }
|
||||
} // namespace SQConvert
|
||||
|
||||
template <> const char *GetClassName<AIList>() { return "AIList"; }
|
||||
template <> const char *GetClassName<AIList, ST_AI>() { return "AIList"; }
|
||||
|
||||
void SQAIList_Register(Squirrel *engine)
|
||||
{
|
||||
DefSQClass <AIList> SQAIList("AIList");
|
||||
DefSQClass<AIList, ST_AI> SQAIList("AIList");
|
||||
SQAIList.PreRegister(engine);
|
||||
SQAIList.AddConstructor<void (AIList::*)(), 1>(engine, "x");
|
||||
|
||||
|
Reference in New Issue
Block a user