26 lines
582 B
C#
26 lines
582 B
C#
using ShrinkModFramework;
|
|
|
|
namespace ExternalFixture
|
|
{
|
|
[ShrinkMod("external.fixture", "External Fixture", "1.0.0")]
|
|
public sealed class ExternalFixtureMod : IShrinkMod
|
|
{
|
|
public void OnConstruct(ShrinkModContext context)
|
|
{
|
|
}
|
|
|
|
public void OnRegisterContent(ShrinkModContext context)
|
|
{
|
|
context.RegisterContent("external.fixture", "version", "v1");
|
|
}
|
|
|
|
public void OnInitialize(ShrinkModContext context)
|
|
{
|
|
}
|
|
|
|
public void OnReady(ShrinkModContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|