mirror of
https://github.com/Stone-Red-Code/StoneRed.LogicSimulator.git
synced 2026-09-04 17:16:29 +02:00
8 lines
176 B
C#
8 lines
176 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace StoneRed.LogicSimulator.Simulation.LogicGates.Interfaces;
|
|
|
|
internal interface IDrawable
|
|
{
|
|
Texture2D Texture { get; }
|
|
} |