11 lines
186 B
C#
Raw Normal View History

2025-01-27 09:59:19 +01:00
using CodexClient;
namespace CodexPlugin
{
2025-01-27 10:22:34 +01:00
public interface ICodexStarter
2025-01-27 09:59:19 +01:00
{
ICodexInstance[] BringOnline(CodexSetup codexSetup);
void Decommission();
2025-01-27 09:59:19 +01:00
}
}