servicepoint-tanks/TanksServer/DrawSteps/IDrawStep.cs

9 lines
153 B
C#
Raw Normal View History

2024-04-09 22:38:56 +02:00
using TanksServer.ServicePointDisplay;
namespace TanksServer.DrawSteps;
internal interface IDrawStep
{
2024-04-09 22:38:56 +02:00
void Draw(PixelDisplayBufferView buffer);
}