Files

8 lines
158 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace StoneRed.LogicSimulator.Api.Interfaces;
internal interface IDrawable
{
Texture2D Texture { get; }
}