servicepoint-tanks/TanksServer/Graphics/IDrawStep.cs
2024-04-10 19:25:45 +02:00

9 lines
152 B
C#

using TanksServer.ServicePointDisplay;
namespace TanksServer.Graphics;
internal interface IDrawStep
{
void Draw(PixelDisplayBufferView buffer);
}