aboutsummaryrefslogtreecommitdiff
path: root/src/scriptapi_object.h
diff options
context:
space:
mode:
authorDiego Martínez <kaeza@users.sf.net>2013-04-24 07:52:46 -0300
committerPerttu Ahola <celeron55@gmail.com>2013-04-24 17:28:00 +0300
commite703c5b81f87550e636ebb1ebb1eb64027a44687 (patch)
treee79287f264f46aa1789c30afff0569f92296ca87 /src/scriptapi_object.h
parent33dd267fd9da1a89b44cd6eab590aadab0f4e335 (diff)
downloadhax-minetest-server-e703c5b81f87550e636ebb1ebb1eb64027a44687.tar.gz
hax-minetest-server-e703c5b81f87550e636ebb1ebb1eb64027a44687.zip
Added support to disable built-in HUD elements
Diffstat (limited to 'src/scriptapi_object.h')
-rw-r--r--src/scriptapi_object.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/scriptapi_object.h b/src/scriptapi_object.h
index fd46f2cf6..81e8cda33 100644
--- a/src/scriptapi_object.h
+++ b/src/scriptapi_object.h
@@ -202,6 +202,9 @@ private:
// hud_get(self, id)
static int l_hud_get(lua_State *L);
+ // hud_builtin_enable(self, id, flag)
+ static int l_hud_builtin_enable(lua_State *L);
+
public:
ObjectRef(ServerActiveObject *object);