servicepoint-tanks/TanksServer/Graphics/IDrawStep.cs
2024-04-12 16:10:38 +02:00

9 lines
123 B
C#

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