13 lines
239 B
C#
13 lines
239 B
C#
using StationeersIC10Editor;
|
|
|
|
namespace Slang
|
|
{
|
|
public class SlangFormatter : ICodeFormatter
|
|
{
|
|
public override Line ParseLine(string line)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|