feat: ISpriteBatch added for MonoGame integration

This commit is contained in:
2025-06-03 23:38:25 +03:00
parent 9edf3b0aa6
commit 24d1a1d764
5 changed files with 114 additions and 7 deletions

View File

@@ -1,10 +1,8 @@
using Microsoft.Xna.Framework.Graphics;
using Syntriax.Engine.Core;
namespace Syntriax.Engine.Integration.MonoGame;
public interface IDrawableSprite : IBehaviour
{
void Draw(SpriteBatch spriteBatch);
void Draw(ISpriteBatch spriteBatch);
}