diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-10 15:41:23 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-10 15:41:23 +0200 |
commit | 7d7d4d675cd066a9dcd4467ff99c471a7ae09b88 (patch) | |
tree | a75a4a5234112a52ee81b7cf5c6f255105ab22ff /src/script/lua_api/l_clientobject.h | |
parent | c47eae3165bc1229c5f08424933f8794a8ee3cf9 (diff) | |
download | dragonfireclient-7d7d4d675cd066a9dcd4467ff99c471a7ae09b88.tar.xz |
Add ClientObjectRef.get_properties
Diffstat (limited to 'src/script/lua_api/l_clientobject.h')
-rw-r--r-- | src/script/lua_api/l_clientobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script/lua_api/l_clientobject.h b/src/script/lua_api/l_clientobject.h index ebc0f2a90..160b6c4fe 100644 --- a/src/script/lua_api/l_clientobject.h +++ b/src/script/lua_api/l_clientobject.h @@ -78,6 +78,9 @@ private: // get_textures(self) static int l_get_item_textures(lua_State *L); + // get_properties(self) + static int l_get_properties(lua_State *L); + // get_hp(self) static int l_get_hp(lua_State *L); |