7 lines
103 B
C#
7 lines
103 B
C#
namespace TanksServer.Graphics;
|
|
|
|
internal interface IDrawStep
|
|
{
|
|
void Draw(GamePixelGrid pixels);
|
|
}
|