fix compile errors

This commit is contained in:
arthur.jamet
2021-06-17 20:50:43 +02:00
parent 1cf820bf87
commit 051096a194
43 changed files with 124 additions and 137 deletions
+2 -2
View File
@@ -6,8 +6,8 @@
namespace BBM
{
MapInfo::MapInfo(Vector3f pos, MapGenerator::BlockType type)
: x(pos.x), y(pos.y), z(pos.z), type(type)
MapInfo::MapInfo(Vector3f pos, MapGenerator::BlockType blockType)
: x(pos.x), y(pos.y), z(pos.z), type(blockType)
{ }
MapInfo::MapInfo(const MapInfo &other)