namespace TransportGame.Primitives { /// /// Object can be positioned using a point /// public interface IPositionable { /// /// Gets the position of the object /// Vector2 Position { get; } } }