mirror of
https://github.com/zeldaret/tp
synced 2026-07-07 14:13:27 -04:00
Debug and various d_ev_camera fixes (#2448)
This commit is contained in:
@@ -44,6 +44,7 @@ public:
|
||||
bool operator>(const cSAngle& other) const { return mAngle > other.mAngle; }
|
||||
bool operator<=(const cSAngle& other) const { return mAngle <= other.mAngle; }
|
||||
bool operator>=(const cSAngle& other) const { return mAngle >= other.mAngle; }
|
||||
bool operator==(const cSAngle& other) const { return mAngle == other.mAngle; }
|
||||
operator s16(void) const { return mAngle; }
|
||||
void operator=(const cSAngle& other) { mAngle = other.mAngle; }
|
||||
static inline cSAngle getMaxNegative(void) { return cSAngle((s16)-0x8000); }
|
||||
|
||||
Reference in New Issue
Block a user