refactor: Removed Unnecessary Graphics Folder

This commit is contained in:
2024-01-31 12:24:57 +03:00
parent ff3202eda9
commit a357f0fdcb
9 changed files with 4 additions and 207 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);
}