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