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