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

This commit is contained in:
2026-08-26 02:50:34 +08:00
commit 8eaaa3040a
139 changed files with 9309 additions and 0 deletions
@@ -0,0 +1,16 @@
namespace ShrinkNetwork
{
public interface IShrinkNetworkMessage
{
}
public interface IShrinkNetworkRequest : IShrinkNetworkMessage
{
}
public interface IShrinkNetworkResponse : IShrinkNetworkMessage
{
int ErrorCode { get; set; }
string ErrorMessage { get; set; }
}
}