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