enemys always looking at you when you are the target

This commit is contained in:
Remco
2016-05-25 11:46:22 +02:00
parent e7a7cc5588
commit d739141b25
4 changed files with 23 additions and 13 deletions
+2
View File
@@ -15,9 +15,11 @@ public:
Vec3f(const Vec3f &other);
Vec3f(float x, float y, float z);
float Length();
void Normalize();
float Distance(const Vec3f &);
float& operator [](int);
Vec3f operator + (const Vec3f &other);
Vec3f operator -(const Vec3f &other);
Vec3f operator / (float value);
bool operator ==(const Vec3f &other);
bool operator !=(const Vec3f &other);