Start bindings and interface implementation for the IC10Editor mod

This commit is contained in:
2025-11-28 01:14:54 -07:00
parent 2e7dc4fd91
commit 611f0f6f71
6 changed files with 79 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
using StationeersIC10Editor;
namespace Slang
{
public class SlangFormatter : ICodeFormatter
{
public override Line ParseLine(string line)
{
throw new System.NotImplementedException();
}
}
}