1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Code modernization: src/m* (part 2)

* empty function
* default constructor/destructor
* remove unused Map::emergeSector(a,b)
* for range-based loops
* migrate a dirs[7] table to direction tables
* remove various old unused function
This commit is contained in:
Loic Blot 2017-08-19 09:12:54 +02:00
parent e53d8a7536
commit b5f7249a7e
No known key found for this signature in database
GPG key ID: EFAA458E8C153987
13 changed files with 161 additions and 246 deletions

View file

@ -47,7 +47,7 @@ struct MapgenFlatParams : public MapgenParams
NoiseParams np_cave2;
MapgenFlatParams();
~MapgenFlatParams() {}
~MapgenFlatParams() = default;
void readParams(const Settings *settings);
void writeParams(Settings *settings) const;