Engine-Pong/Shared/Abstract/IDrawableShape.cs

9 lines
140 B
C#

using Apos.Shapes;
namespace Syntriax.Engine.Core;
public interface IDrawableShape : IBehaviour
{
void Draw(ShapeBatch shapeBatch);
}