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,11 @@
using System;
namespace ShrinkNetwork
{
public interface IShrinkNetworkSerializer
{
byte[] Serialize(object value);
object Deserialize(byte[] payload, Type type);
T Deserialize<T>(byte[] payload);
}
}