diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 14:16:18 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 14:16:18 +0200 |
commit | 28a560684b9b9048f8436583805f3f733d7ce829 (patch) | |
tree | 7615dddb67a38982d10660c751ef4db229a702f8 /src/script/lua_api/l_client.h | |
parent | c1aea404b862256e6bf9316eeb8f32c72b78a4c2 (diff) | |
download | dragonfireclient-28a560684b9b9048f8436583805f3f733d7ce829.tar.xz |
Added the API additions from waspsaliva
Diffstat (limited to 'src/script/lua_api/l_client.h')
-rw-r--r-- | src/script/lua_api/l_client.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/script/lua_api/l_client.h b/src/script/lua_api/l_client.h index 4e49ad60e..5863e5717 100644 --- a/src/script/lua_api/l_client.h +++ b/src/script/lua_api/l_client.h @@ -119,10 +119,13 @@ private: // set_keypress(key_setting, pressed) static int l_set_keypress(lua_State *L); - + // drop_selected_item() static int l_drop_selected_item(lua_State *L); -public: + // get_objects_inside_radius(pos, radius) + static int l_get_objects_inside_radius(lua_State *L); + +public: static void Initialize(lua_State *L, int top); }; |