Engine-Pong/Shared/Abstract/IDisplayableShape.cs
2025-04-15 23:42:06 +03:00

9 lines
130 B
C#

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