Merge branch 'developer' into johan
# Conflicts: # World.cpp # worlds/world1.json
This commit is contained in:
+2
-2
@@ -25,7 +25,7 @@ Vec3f::Vec3f()
|
||||
this->y = 0;
|
||||
this->z = 0;
|
||||
}
|
||||
Vec3f::Vec3f(Vec3f &other)
|
||||
Vec3f::Vec3f(const Vec3f &other)
|
||||
{
|
||||
this->x = other.x;
|
||||
this->y = other.y;
|
||||
@@ -75,7 +75,7 @@ Vec2f::Vec2f()
|
||||
this->x = 0;
|
||||
this->y = 0;
|
||||
}
|
||||
Vec2f::Vec2f(Vec2f &other)
|
||||
Vec2f::Vec2f(const Vec2f &other)
|
||||
{
|
||||
this->x = other.x;
|
||||
this->y = other.y;
|
||||
|
||||
Reference in New Issue
Block a user