mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-26 18:21:04 +00:00
Fix comments
This commit is contained in:
parent
64bdd4b509
commit
a4677496f3
3 changed files with 6 additions and 6 deletions
|
@ -148,8 +148,8 @@ const char *Mapgen::getMapgenName(MapgenType mgtype)
|
|||
}
|
||||
|
||||
|
||||
Mapgen *Mapgen::createMapgen(MapgenType mgtype, int mgid,
|
||||
MapgenParams *params, EmergeManager *emerge)
|
||||
Mapgen *Mapgen::createMapgen(MapgenType mgtype, MapgenParams *params,
|
||||
EmergeManager *emerge)
|
||||
{
|
||||
switch (mgtype) {
|
||||
case MAPGEN_CARPATHIAN:
|
||||
|
|
|
@ -208,8 +208,8 @@ public:
|
|||
// Mapgen management functions
|
||||
static MapgenType getMapgenType(const std::string &mgname);
|
||||
static const char *getMapgenName(MapgenType mgtype);
|
||||
static Mapgen *createMapgen(MapgenType mgtype, int mgid,
|
||||
MapgenParams *params, EmergeManager *emerge);
|
||||
static Mapgen *createMapgen(MapgenType mgtype, MapgenParams *params,
|
||||
EmergeManager *emerge);
|
||||
static MapgenParams *createMapgenParams(MapgenType mgtype);
|
||||
static void getMapgenNames(std::vector<const char *> *mgnames, bool include_hidden);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue