Some bug fixes and add IDrawable interface

This commit is contained in:
Stone_Red
2023-09-13 12:21:43 +02:00
parent b1b185919b
commit 05a8a72158
7 changed files with 98 additions and 50 deletions
@@ -0,0 +1,8 @@
using Microsoft.Xna.Framework.Graphics;
namespace StoneRed.LogicSimulator.Simulation.LogicGates.Interfaces;
internal interface IDrawable
{
Texture2D Texture { get; }
}