9 lines
127 B
C#
9 lines
127 B
C#
using DisplayCommands;
|
|
|
|
namespace TanksServer.Graphics;
|
|
|
|
internal interface IDrawStep
|
|
{
|
|
void Draw(GamePixelGrid pixels);
|
|
}
|