9 lines
169 B
C#
9 lines
169 B
C#
using Syntriax.Engine.Core;
|
|
|
|
namespace Syntriax.Engine.Integration.MonoGame;
|
|
|
|
public interface IDrawableSprite : IBehaviour
|
|
{
|
|
void Draw(ISpriteBatch spriteBatch);
|
|
}
|