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

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

View File

@@ -6,7 +6,7 @@ using Syntriax.Engine.Core.Abstract;
namespace Pong.Behaviours;
public class TextBehaviour : BehaviourOverride, IDisplayable
public class TextBehaviour : BehaviourOverride, IDisplayableSprite
{
public TextBehaviour() { }
public TextBehaviour(SpriteFont font) => Font = font;