aboutsummaryrefslogtreecommitdiff
path: root/src/gui/guiKeyChangeMenu.h
diff options
context:
space:
mode:
authorÁcs Zoltán <acszoltan111@gmail.com>2019-12-15 16:02:25 +0000
committerrubenwardy <rw@rubenwardy.com>2020-01-10 18:57:47 +0000
commit1c49e2ffc016a2e883c13733c65e9a91381b813d (patch)
tree6d6c8e01ff69374e0ecf7bb1a6af1b49b1b65f2a /src/gui/guiKeyChangeMenu.h
parent140245c58de8656835bd05bf601d48a499f5f44b (diff)
downloadminetest-1c49e2ffc016a2e883c13733c65e9a91381b813d.tar.gz
minetest-1c49e2ffc016a2e883c13733c65e9a91381b813d.tar.bz2
minetest-1c49e2ffc016a2e883c13733c65e9a91381b813d.zip
Translated using Weblate (Hungarian)
Currently translated at 61.9% (789 of 1274 strings)
Diffstat (limited to 'src/gui/guiKeyChangeMenu.h')
0 files changed, 0 insertions, 0 deletions
if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include <map> #include "irr_v3d.h" #include "lua_api/l_base.h" class Map; class MapBlock; class MMVManip; /* VoxelManip */ class LuaVoxelManip : public ModApiBase { private: std::map<v3s16, MapBlock *> modified_blocks; bool is_mapgen_vm = false; static const char className[]; static const luaL_Reg methods[]; static int gc_object(lua_State *L); static int l_read_from_map(lua_State *L); static int l_get_data(lua_State *L); static int l_set_data(lua_State *L); static int l_write_to_map(lua_State *L); static int l_get_node_at(lua_State *L); static int l_set_node_at(lua_State *L); static int l_update_map(lua_State *L); static int l_update_liquids(lua_State *L); static int l_calc_lighting(lua_State *L); static int l_set_lighting(lua_State *L); static int l_get_light_data(lua_State *L); static int l_set_light_data(lua_State *L); static int l_get_param2_data(lua_State *L); static int l_set_param2_data(lua_State *L); static int l_was_modified(lua_State *L); static int l_get_emerged_area(lua_State *L); public: MMVManip *vm = nullptr; LuaVoxelManip(MMVManip *mmvm, bool is_mapgen_vm); LuaVoxelManip(Map *map, v3s16 p1, v3s16 p2); LuaVoxelManip(Map *map); ~LuaVoxelManip(); // LuaVoxelManip() // Creates a LuaVoxelManip and leaves it on top of stack static int create_object(lua_State *L); static LuaVoxelManip *checkobject(lua_State *L, int narg); static void Register(lua_State *L); };