11 lines
288 B
C#
11 lines
288 B
C#
namespace ShrinkModFramework
|
|
{
|
|
public interface IShrinkMod
|
|
{
|
|
void OnConstruct(ShrinkModContext context);
|
|
void OnRegisterContent(ShrinkModContext context);
|
|
void OnInitialize(ShrinkModContext context);
|
|
void OnReady(ShrinkModContext context);
|
|
}
|
|
}
|