servicepoint-tanks/TanksServer/Graphics/IDrawStep.cs
2024-04-16 21:35:57 +02:00

7 lines
103 B
C#

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