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 @@ public:
float v[3];
};
Vec3f();
Vec3f(Vec3f &other);
Vec3f(const Vec3f &other);
Vec3f(float x, float y, float z);
float& operator [](int);
Vec3f operator + (const Vec3f &other);
@@ -32,7 +32,7 @@ public:
};
Vec2f();
Vec2f(float x, float y);
Vec2f(Vec2f &other);
Vec2f(const Vec2f &other);
float& operator [](int);
Vec2f operator + (const Vec2f &other);
};