// Copyright © 2017-2018 Atomic Software, LLC. All Rights Reserved. // See LICENSE.md for full license information. using Atom.Core.Mathematics; namespace Atom.Core.Game { public class Position : Vector2 { public short D { get; set; } public Position() : base(0, 0) { D = 0; } public Position(int x, int y, short d) : base(x, y) { D = d; } } }