9 lines
137 B
C#
9 lines
137 B
C#
![]() |
using TanksServer.Helpers;
|
||
|
|
||
|
namespace TanksServer.DrawSteps;
|
||
|
|
||
|
internal interface IDrawStep
|
||
|
{
|
||
|
void Draw(DisplayPixelBuffer buffer);
|
||
|
}
|