summaryrefslogtreecommitdiff
path: root/src/script/lua_api/luaapi.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2013-06-15 22:23:06 -0400
committerkwolekr <kwolekr@minetest.net>2013-06-17 03:21:36 -0400
commit0a8519a26fc7c10b4e7415746e9045caa3ae978f (patch)
tree27c3bb64a46f3dfeaa0dbc5443b0efe69e37cf37 /src/script/lua_api/luaapi.h
parenteccd1fdbeddce60717f8fcbecded5b36387e3b38 (diff)
downloadminetest-0a8519a26fc7c10b4e7415746e9045caa3ae978f.tar.gz
minetest-0a8519a26fc7c10b4e7415746e9045caa3ae978f.tar.bz2
minetest-0a8519a26fc7c10b4e7415746e9045caa3ae978f.zip
Add initial Decoration support, many misc. improvements & modifications
Diffstat (limited to 'src/script/lua_api/luaapi.h')
-rw-r--r--src/script/lua_api/luaapi.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/script/lua_api/luaapi.h b/src/script/lua_api/luaapi.h
index 9623502c2..d03c14117 100644
--- a/src/script/lua_api/luaapi.h
+++ b/src/script/lua_api/luaapi.h
@@ -45,9 +45,6 @@ private:
// get_server_status()
static int l_get_server_status(lua_State *L);
- // register_biome_groups({frequencies})
- static int l_register_biome_groups(lua_State *L);
-
// register_biome({lots of stuff})
static int l_register_biome(lua_State *L);
@@ -130,9 +127,15 @@ private:
// rollback_revert_actions_by(actor, seconds) -> bool, log messages
static int l_rollback_revert_actions_by(lua_State *L);
+ // register_ore(oredesc)
static int l_register_ore(lua_State *L);
+
+ // register_decoration(deco)
+ static int l_register_decoration(lua_State *L);
static struct EnumString es_OreType[];
+ static struct EnumString es_DecorationType[];
+
};