diff --git a/Robust.Shared.Maths/Vector2i.cs b/Robust.Shared.Maths/Vector2i.cs index b8ea4a96f..ad11d2bfe 100644 --- a/Robust.Shared.Maths/Vector2i.cs +++ b/Robust.Shared.Maths/Vector2i.cs @@ -27,6 +27,11 @@ namespace Robust.Shared.Maths public static readonly Vector2i Left = (-1, 0); public static readonly Vector2i Right = (1, 0); + public static readonly Vector2i DownLeft = (-1, -1); + public static readonly Vector2i DownRight = (1, -1); + public static readonly Vector2i UpRight = (1, 1); + public static readonly Vector2i UpLeft = (-1, 1); + /// /// The X component of the Vector2i. ///