chore: updated engine

This commit is contained in:
2025-04-11 20:02:29 +03:00
parent 73ae55e1d4
commit 67e46cdaf3
37 changed files with 842 additions and 803 deletions

View File

@@ -0,0 +1,8 @@
using Apos.Shapes;
namespace Syntriax.Engine.Core.Abstract;
public interface IDisplayableShape
{
void Draw(ShapeBatch shapeBatch);
}

View File

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