aboutsummaryrefslogtreecommitdiff
path: root/src/lua/common/je_lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/common/je_lua.h')
-rw-r--r--src/lua/common/je_lua.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lua/common/je_lua.h b/src/lua/common/je_lua.h
index cacec95..74f9819 100644
--- a/src/lua/common/je_lua.h
+++ b/src/lua/common/je_lua.h
@@ -35,32 +35,32 @@ namespace JinEngine
///
/// Access lua object by object pointer.
///
- int luax_getobject(lua_State* L, Shared* shared);
+ int luax_getobject(lua_State* L, LuaObject* obj);
///
/// Get object's reference table.
///
- void luax_getreference(lua_State* L, Shared* shared);
+ void luax_getreference(lua_State* L, LuaObject* obj);
///
///
///
- bool luax_addreference(lua_State* L, Shared* shared, Shared* dep);
+ bool luax_addreference(lua_State* L, LuaObject* obj, LuaObject* dep);
///
///
///
- void luax_removereference(lua_State* L, Shared* shared);
+ void luax_removereference(lua_State* L, LuaObject* obj);
///
///
///
- void luax_removereference(lua_State* L, Shared* shared, Shared* dep);
+ void luax_removereference(lua_State* L, LuaObject* obj, LuaObject* dep);
///
///
///
- void luax_removeobject(lua_State* L, Shared* shared);
+ void luax_removeobject(lua_State* L, LuaObject* obj);
///
///