Engine-Pong/Game/Abstract/IDisplayableShape.cs

9 lines
139 B
C#

using Apos.Shapes;
namespace Syntriax.Engine.Core.Abstract;
public interface IDisplayableShape
{
void Draw(ShapeBatch shapeBatch);
}