diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-10 20:45:05 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-10 20:45:05 +0200 |
commit | c86dcd0f682f76339989afec255bf3d7078db096 (patch) | |
tree | cd74cff6f879026a47c197545796aa2deb20ea15 /src/script/lua_api/l_clientobject.h | |
parent | b84ed7d0beb524a62070a503a40b78b77506b258 (diff) | |
download | dragonfireclient-c86dcd0f682f76339989afec255bf3d7078db096.tar.xz |
Add on_object_hp_change callback and nametag images
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 22d2f4a1c..60d10dcf6 100644 --- a/src/script/lua_api/l_clientobject.h +++ b/src/script/lua_api/l_clientobject.h @@ -98,4 +98,7 @@ private: // remove(self) static int l_remove(lua_State *L); + + // set_nametag_images(self, images) + static int l_set_nametag_images(lua_State *L); }; |