9 lines
125 B
C#
9 lines
125 B
C#
|
using Apos.Shapes;
|
||
|
|
||
|
namespace Pong.Behaviours;
|
||
|
|
||
|
public interface IDisplayableShape
|
||
|
{
|
||
|
void Draw(ShapeBatch shapeBatch);
|
||
|
}
|