city-generation/Game/Assets/Scripts/Primitives/IPositionable.cs

15 lines
297 B
C#
Raw Normal View History

2015-06-17 11:06:54 +00:00

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; }
}
}