9 lines
153 B
C#
9 lines
153 B
C#
using TanksServer.ServicePointDisplay;
|
|
|
|
namespace TanksServer.DrawSteps;
|
|
|
|
internal interface IDrawStep
|
|
{
|
|
void Draw(PixelDisplayBufferView buffer);
|
|
}
|