summaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_vmanip.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2015-01-05 02:42:27 -0500
committerkwolekr <kwolekr@minetest.net>2015-01-05 02:42:27 -0500
commit2d849b0a19af03913e564e2b6dbc36eecdd5ae0c (patch)
tree4f1cfff6586c305c419562173b73c9ab9410c401 /src/script/lua_api/l_vmanip.h
parent7289d61e99625b46eb2c4d6b90a2a5de42f207e6 (diff)
downloadminetest-2d849b0a19af03913e564e2b6dbc36eecdd5ae0c.tar.gz
minetest-2d849b0a19af03913e564e2b6dbc36eecdd5ae0c.tar.bz2
minetest-2d849b0a19af03913e564e2b6dbc36eecdd5ae0c.zip
Shorten ManualMapVoxelManipulator to MMVManip
Diffstat (limited to 'src/script/lua_api/l_vmanip.h')
-rw-r--r--src/script/lua_api/l_vmanip.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/lua_api/l_vmanip.h b/src/script/lua_api/l_vmanip.h
index 82c807240..1adb78c4e 100644
--- a/src/script/lua_api/l_vmanip.h
+++ b/src/script/lua_api/l_vmanip.h
@@ -26,7 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
class Map;
class MapBlock;
-class ManualMapVoxelManipulator;
+class MMVManip;
/*
VoxelManip
@@ -64,9 +64,9 @@ private:
static int l_get_emerged_area(lua_State *L);
public:
- ManualMapVoxelManipulator *vm;
+ MMVManip *vm;
- LuaVoxelManip(ManualMapVoxelManipulator *mmvm, bool is_mapgen_vm);
+ LuaVoxelManip(MMVManip *mmvm, bool is_mapgen_vm);
LuaVoxelManip(Map *map, v3s16 p1, v3s16 p2);
LuaVoxelManip(Map *map);
~LuaVoxelManip();