9 lines
123 B
C#
9 lines
123 B
C#
using DisplayCommands;
|
|
|
|
namespace TanksServer.Graphics;
|
|
|
|
internal interface IDrawStep
|
|
{
|
|
void Draw(PixelGrid buffer);
|
|
}
|