RingBuffer primitive.

This commit is contained in:
Vapre
2022-07-23 16:35:42 +02:00
committed by Gustas
parent 09ba09f4e3
commit 1ce916182d
4 changed files with 171 additions and 32 deletions

View File

@@ -39,7 +39,7 @@ namespace OpenRA
public static WAngle operator -(WAngle a) { return new WAngle(-a.Angle); }
public static bool operator ==(WAngle me, WAngle other) { return me.Angle == other.Angle; }
public static bool operator !=(WAngle me, WAngle other) { return !(me == other); }
public static bool operator !=(WAngle me, WAngle other) { return me.Angle != other.Angle; }
public override int GetHashCode() { return Angle.GetHashCode(); }