namespace Unity.Netcode { /// /// 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 /// public enum HashSize : byte { /// /// Four byte hash /// VarIntFourBytes, /// /// Eight byte hash /// VarIntEightBytes } }