Engine-Pong/Game/Abstract/IDisplayableShape.cs

9 lines
139 B
C#
Raw Permalink Normal View History

2024-01-24 12:17:21 +03:00
using Apos.Shapes;
namespace Syntriax.Engine.Core.Abstract;
2024-01-24 12:17:21 +03:00
public interface IDisplayableShape
{
void Draw(ShapeBatch shapeBatch);
}