diff options
Diffstat (limited to 'src/lua/common/je_lua_proxy.cpp')
-rw-r--r-- | src/lua/common/je_lua_proxy.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/lua/common/je_lua_proxy.cpp b/src/lua/common/je_lua_proxy.cpp deleted file mode 100644 index b892e67..0000000 --- a/src/lua/common/je_lua_proxy.cpp +++ /dev/null @@ -1,32 +0,0 @@ -#include "je_lua.h" -#include "je_lua_proxy.h" - -namespace JinEngine -{ - namespace Lua - { - - void Proxy::bind(SharedBase* s) - { - if (s == nullptr) - return; - shared = s; - shared->retain(); - } - - void Proxy::release() - { - if (shared != nullptr) - { - shared->release(); - shared = nullptr; - } - } - - const char* Proxy::getObjectType() - { - return shared->getType(); - } - - } -}
\ No newline at end of file |