Refactor johan branch for compiling with g++

This commit is contained in:
jancoow
2016-05-22 23:19:05 +02:00
parent a8415db4ac
commit 7d13269480
13 changed files with 773 additions and 792 deletions
+2 -2
View File
@@ -12,7 +12,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;
@@ -46,7 +46,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;