Merge branch 'developer' into johan

# Conflicts:
#	World.cpp
#	worlds/world1.json
This commit is contained in:
Remco
2016-05-23 10:34:21 +02:00
13 changed files with 776 additions and 801 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 Length();
float Distance(const Vec3f &);
@@ -36,7 +36,7 @@ public:
};
Vec2f();
Vec2f(float x, float y);
Vec2f(Vec2f &other);
Vec2f(const Vec2f &other);
float& operator [](int);
Vec2f operator + (const Vec2f &other);
float length();