Files
2025-11-30 08:35:03 +02:00

13 lines
185 B
C#

namespace Needle.Engine
{
public interface IWriter
{
void Write(string str);
string Flush();
}
public interface ICodeWriter : IWriter
{
int Indentation { get; set; }
}
}