polygone/Library/PackageCache/com.unity.multiplayer.mlapi@3e3aef6aa0/Runtime/Configuration/HashSize.cs
2021-08-02 05:44:37 -04:00

25 lines
No EOL
646 B
C#

namespace MLAPI.Configuration
{
/// <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
{
/// <summary>
/// Two byte hash
/// </summary>
VarIntTwoBytes,
/// <summary>
/// Four byte hash
/// </summary>
VarIntFourBytes,
/// <summary>
/// Eight byte hash
/// </summary>
VarIntEightBytes
}
}