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