13 lines
249 B
C#
Raw Normal View History

2025-01-27 10:22:34 +01:00
using CodexClient;
namespace CodexPlugin
{
public class BinaryCodexStarter : ICodexStarter
{
public ICodexInstance[] BringOnline(CodexSetup codexSetup)
{
throw new NotImplementedException();
}
}
}