Files
StoneRed.LogicSimulator/StoneRed.LogicSimulator/Simulation/LogicGates/Interfaces/IDrawable.cs
T

8 lines
176 B
C#

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