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