misc optimization (#6436)
This commit is contained in:
@@ -67,7 +67,7 @@ namespace Content.Shared.FixedPoint
|
||||
=> new(a._value + b._value);
|
||||
|
||||
public static FixedPoint2 operator -(FixedPoint2 a, FixedPoint2 b)
|
||||
=> a + -b;
|
||||
=> new(a._value - b._value);
|
||||
|
||||
public static FixedPoint2 operator *(FixedPoint2 a, FixedPoint2 b)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user