servicepoint-tanks/tanks-backend/TanksServer/Graphics/IDrawStep.cs

7 lines
103 B
C#
Raw Normal View History

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