Chi-Tech
material_property_base.cc
Go to the documentation of this file.
2
3//###################################################################
4/** Base class method for pushing lua table.*/
6{
7 lua_newtable(L);
8 lua_pushstring(L,"is_empty");
9 lua_pushboolean(L,true);
10 lua_settable(L,-3);
11}
virtual void PushLuaTable(lua_State *L) const