chore: initialize standalone UPM package
Publish UPM package / publish (push) Failing after 1s

This commit is contained in:
2026-08-26 02:50:31 +08:00
commit 78ccae3e07
142 changed files with 6572 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace ShrinkModFramework
{
public interface IShrinkMod
{
void OnConstruct(ShrinkModContext context);
void OnRegisterContent(ShrinkModContext context);
void OnInitialize(ShrinkModContext context);
void OnReady(ShrinkModContext context);
}
}