This repository has been archived on 2026-07-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
servicepoint-tanks/TanksServer/DrawSteps/IDrawStep.cs
2024-04-09 22:38:56 +02:00

8 lines
153 B
C#

using TanksServer.ServicePointDisplay;
namespace TanksServer.DrawSteps;
internal interface IDrawStep
{
void Draw(PixelDisplayBufferView buffer);
}