Added new tangible ops, including tangible.delete

This commit is contained in:
2021-03-19 13:41:41 -04:00
parent 05052f846e
commit e06bae63f7
5 changed files with 138 additions and 41 deletions

View File

@@ -392,12 +392,14 @@ public:
void newtable(LuaSlot target) const;
lua_State *newthread(LuaSlot target) const;
void makesubtable(LuaSlot sub, LuaSlot tab, const char *name) const;
void getglobaltable(LuaSlot gltab) const;
void makesubtable(LuaSlot sub, LuaSlot tab, const char *name) const;
void cleartable(LuaSlot tab) const;
int next(LuaSlot tab, LuaSlot key, LuaSlot value) const;
void makeclass(LuaSlot tab, LuaSlot name) const;
void getclass(LuaSlot tab, LuaSlot name) const;
void makeclass(LuaSlot tab, const char *name) const {
push_any_value(name);