Files
AR-Menu/Library/PackageCache/com.needle.engine-exporter@8c046140a1d9/Common/Runtime/Interfaces/IWriter.cs
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; }
}
}