Files
stationeers_lang/csharp_mod/SlangFormatter.cs

13 lines
239 B
C#

using StationeersIC10Editor;
namespace Slang
{
public class SlangFormatter : ICodeFormatter
{
public override Line ParseLine(string line)
{
throw new System.NotImplementedException();
}
}
}