Engine-Pong/Game/Behaviours/IDisplayableShape.cs

9 lines
125 B
C#
Raw Normal View History

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