CPacManPickups

This commit is contained in:
Sergeanur 2020-04-12 23:50:34 +03:00
parent a622c9e877
commit 741c9405d0
5 changed files with 456 additions and 31 deletions

View file

@ -83,7 +83,7 @@ public:
return x == right.x && y == right.y && z == right.z;
}
bool IsZero(void) { return x == 0.0f && y == 0.0f && z == 0.0f; }
bool IsZero(void) const { return x == 0.0f && y == 0.0f && z == 0.0f; }
};
inline CVector operator+(const CVector &left, const CVector &right)