aboutsummaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_client.h
diff options
context:
space:
mode:
authorElias Fleckenstein <54945686+EliasFleckenstein03@users.noreply.github.com>2020-11-05 14:08:25 +0100
committerGitHub <noreply@github.com>2020-11-05 14:08:25 +0100
commit91ad0d049706ed2892ba728cb8cad48480908027 (patch)
tree29dc1b440ab3ce2746fcf9135c7e0969ae002449 /src/script/lua_api/l_client.h
parent6bda686c04e602c7e50d4838632d92c55b228c36 (diff)
parent1bab49049bfc4bf89b4ee69fe734e2a79de0eb9f (diff)
downloaddragonfireclient-91ad0d049706ed2892ba728cb8cad48480908027.tar.xz
Merge pull request #10 from corarona/master
lua api: set_pitch and make_screenshot
Diffstat (limited to 'src/script/lua_api/l_client.h')
-rw-r--r--src/script/lua_api/l_client.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script/lua_api/l_client.h b/src/script/lua_api/l_client.h
index 5863e5717..1cac0ec1f 100644
--- a/src/script/lua_api/l_client.h
+++ b/src/script/lua_api/l_client.h
@@ -126,6 +126,9 @@ private:
// get_objects_inside_radius(pos, radius)
static int l_get_objects_inside_radius(lua_State *L);
+ //make_screenshot()
+ static int l_make_screenshot(lua_State *L);
+
public:
static void Initialize(lua_State *L, int top);
};