9 lines
140 B
C#
9 lines
140 B
C#
using Apos.Shapes;
|
|
|
|
namespace Syntriax.Engine.Core;
|
|
|
|
public interface IDrawableShape : IBehaviour
|
|
{
|
|
void Draw(ShapeBatch shapeBatch);
|
|
}
|