VelNet-Unity/Runtime/Util/IPackState.cs

8 lines
128 B
C#

namespace VelNet
{
public interface IPackState
{
public byte[] PackState();
public void UnpackState(byte[] state);
}
}