Files
MonoGame.Extended/Source/MonoGame.Extended/IMovable.cs
T

9 lines
147 B
C#

using Microsoft.Xna.Framework;
namespace MonoGame.Extended
{
public interface IMovable
{
Vector2 Position { get; set; }
}
}