From 1355a4363ed90113aac017741f850c295dced9fe Mon Sep 17 00:00:00 2001 From: ssccsscc Date: Sat, 23 Feb 2019 16:49:00 +0500 Subject: [PATCH] Added Lua function for working with zoom --- src/lua/LuaScriptInterface.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lua/LuaScriptInterface.h b/src/lua/LuaScriptInterface.h index 040627db7..7586fe8a6 100644 --- a/src/lua/LuaScriptInterface.h +++ b/src/lua/LuaScriptInterface.h @@ -121,6 +121,9 @@ class LuaScriptInterface: public CommandInterface static int renderer_grid(lua_State * l); static int renderer_debugHUD(lua_State * l); static int renderer_depth3d(lua_State * l); + static int renderer_zoomEnabled(lua_State *l); + static int renderer_zoomWindowInfo(lua_State *l); + static int renderer_zoomScopeInfo(lua_State *l); //Elements void initElementsAPI();