9 lines
164 B
C#
9 lines
164 B
C#
|
using Microsoft.Xna.Framework.Graphics;
|
||
|
|
||
|
namespace Syntriax.Engine.Core.Abstract;
|
||
|
|
||
|
public interface IDisplayable
|
||
|
{
|
||
|
public void Draw(SpriteBatch spriteBatch);
|
||
|
}
|