servicepoint-tanks/TanksServer/Graphics/IDrawStep.cs
2024-04-15 20:34:23 +02:00

9 lines
127 B
C#

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