Engine-Pong/Shared/Abstract/IDisplayableShape.cs
2025-04-11 20:03:03 +03:00

9 lines
139 B
C#

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