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,22 @@
using Assets.Scripts.UI;
namespace Slang
{
public static class SlangDocs
{
public static StationpediaPage[] Pages
{
get
{
return
[
new StationpediaPage(
"slang-init",
"Slang",
"Slang is a new high level language built specifically for Stationeers"
),
];
}
}
}
}