chore: updated engine
This commit is contained in:
8
Shared/Abstract/IDisplayableShape.cs
Normal file
8
Shared/Abstract/IDisplayableShape.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Apos.Shapes;
|
||||
|
||||
namespace Syntriax.Engine.Core.Abstract;
|
||||
|
||||
public interface IDisplayableShape
|
||||
{
|
||||
void Draw(ShapeBatch shapeBatch);
|
||||
}
|
8
Shared/Abstract/IDisplayableSprite.cs
Normal file
8
Shared/Abstract/IDisplayableSprite.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
|
||||
namespace Syntriax.Engine.Core.Abstract;
|
||||
|
||||
public interface IDisplayableSprite
|
||||
{
|
||||
public void Draw(SpriteBatch spriteBatch);
|
||||
}
|
Reference in New Issue
Block a user