Fix IDE0090
This commit is contained in:
committed by
Pavel Penev
parent
164abfdae1
commit
8a285f9b19
@@ -59,7 +59,7 @@ namespace OpenRA
|
||||
public static int2 Max(int2 a, int2 b) { return new int2(Math.Max(a.X, b.X), Math.Max(a.Y, b.Y)); }
|
||||
public static int2 Min(int2 a, int2 b) { return new int2(Math.Min(a.X, b.X), Math.Min(a.Y, b.Y)); }
|
||||
|
||||
public static readonly int2 Zero = new int2(0, 0);
|
||||
public static readonly int2 Zero = new(0, 0);
|
||||
public float2 ToFloat2() { return new float2(X, Y); }
|
||||
|
||||
// Change endianness of a uint32
|
||||
|
||||
Reference in New Issue
Block a user