11 lines
209 B
C#
11 lines
209 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
using Syntriax.Engine.Core;
|
|
|
|
namespace Syntriax.Engine.Integration.MonoGame;
|
|
|
|
public interface IDrawableSprite : IBehaviour
|
|
{
|
|
void Draw(SpriteBatch spriteBatch);
|
|
}
|