9 lines
139 B
C#
9 lines
139 B
C#
using Apos.Shapes;
|
|
|
|
namespace Syntriax.Engine.Core.Abstract;
|
|
|
|
public interface IDisplayableShape
|
|
{
|
|
void Draw(ShapeBatch shapeBatch);
|
|
}
|