diff options
Diffstat (limited to 'src/script/lua_api/l_mapgen.h')
-rw-r--r-- | src/script/lua_api/l_mapgen.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script/lua_api/l_mapgen.h b/src/script/lua_api/l_mapgen.h index d14471a08..dac0f00a7 100644 --- a/src/script/lua_api/l_mapgen.h +++ b/src/script/lua_api/l_mapgen.h @@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "lua_api/l_base.h" +class INodeDefManager; class NodeResolver; class DecoSimple; class DecoSchematic; @@ -60,7 +61,7 @@ private: static bool regDecoSimple(lua_State *L, NodeResolver *resolver, DecoSimple *deco); static bool regDecoSchematic(lua_State *L, - NodeResolver *resolver, DecoSchematic *deco); + INodeDefManager *ndef, DecoSchematic *deco); static struct EnumString es_BiomeTerrainType[]; static struct EnumString es_DecorationType[]; |