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
@@ -0,0 +1,14 @@
using System;
namespace ShrinkModFramework
{
public interface IShrinkModNetworkTransport
{
bool IsServer { get; }
bool IsClient { get; }
event Action<ShrinkModNetworkEnvelope> OnEnvelopeReceived;
void Send(ShrinkModNetworkEnvelope envelope);
}
}