diff options
Diffstat (limited to 'src/mg_ore.h')
-rw-r--r-- | src/mg_ore.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mg_ore.h b/src/mg_ore.h index b6db860b9..585d58f37 100644 --- a/src/mg_ore.h +++ b/src/mg_ore.h @@ -99,7 +99,7 @@ public: static const char *ELEMENT_TITLE; static const size_t ELEMENT_LIMIT = 0x10000; - OreManager(IGameDef *gamedef) {} + OreManager(IGameDef *gamedef); ~OreManager() {} Ore *create(int type) @@ -116,6 +116,8 @@ public: } } + void clear(); + size_t placeAllOres(Mapgen *mg, u32 seed, v3s16 nmin, v3s16 nmax); }; |