servicepoint-tanks/TanksServer/Graphics/IDrawStep.cs

9 lines
123 B
C#
Raw Normal View History

using DisplayCommands;
2024-04-10 19:25:45 +02:00
namespace TanksServer.Graphics;
internal interface IDrawStep
{
void Draw(PixelGrid buffer);
}