oops, GetNumItems served this purpose already

This commit is contained in:
AJ Kelly
2011-12-29 11:03:37 -06:00
parent 4790c84f69
commit d163b5ae2b
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -521,7 +521,6 @@ public:
return 1;
}
static int GetNumWheelItems( T* p, lua_State *L ){ lua_pushnumber( L, p->GetNumItems() ); return 1; }
static int IsSettled( T* p, lua_State *L ){ lua_pushboolean( L, p->IsSettled() ); return 1; }
static int IsLocked( T* p, lua_State *L ){ lua_pushboolean( L, p->WheelIsLocked() ); return 1; }
static int SetOpenSection( T* p, lua_State *L ){ p->SetOpenSection( SArg(1) ); return 0; }
@@ -539,7 +538,6 @@ public:
LunaWheelBase()
{
ADD_METHOD( GetWheelItem );
ADD_METHOD( GetNumWheelItems );
ADD_METHOD( IsSettled );
ADD_METHOD( IsLocked );
ADD_METHOD( SetOpenSection );