您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
528 B

namespace Unity.Netcode
{
/// <summary>
/// Represents the length of a var int encoded hash
/// Note that the HashSize does not say anything about the actual final output due to the var int encoding
/// It just says how many bytes the maximum will be
/// </summary>
public enum HashSize : byte
{
/// <summary>
/// Four byte hash
/// </summary>
VarIntFourBytes,
/// <summary>
/// Eight byte hash
/// </summary>
VarIntEightBytes
}
}