servicepoint-tanks/TanksServer/Graphics/IDrawStep.cs

9 lines
152 B
C#
Raw Normal View History

2024-04-09 22:38:56 +02:00
using TanksServer.ServicePointDisplay;
2024-04-10 19:25:45 +02:00
namespace TanksServer.Graphics;
internal interface IDrawStep
{
2024-04-09 22:38:56 +02:00
void Draw(PixelDisplayBufferView buffer);
}