chore: updated engine to use MonoGame integrations

This commit is contained in:
2025-06-01 18:37:59 +03:00
committed by Syntriax
parent 1ff26f5be4
commit 29df4a36e9
21 changed files with 154 additions and 320 deletions

View File

@@ -1,8 +0,0 @@
using Microsoft.Xna.Framework.Graphics;
namespace Syntriax.Engine.Core;
public interface IDisplayableSprite
{
public void Draw(SpriteBatch spriteBatch);
}

View File

@@ -2,7 +2,7 @@ using Apos.Shapes;
namespace Syntriax.Engine.Core;
public interface IDisplayableShape
public interface IDrawableShape : IBehaviour
{
void Draw(ShapeBatch shapeBatch);
}