city-generation/Game/Assets/Scripts/Primitives/IPositionable.cs
2015-06-17 14:06:54 +03:00

15 lines
297 B
C#

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