Files

10 lines
105 B
C#
Raw Permalink Normal View History

2026-08-27 10:56:38 -06:00
namespace PureCrack.Wire;
public enum ProtoWire
{
Varint = 0,
Fixed64 = 1,
Bytes = 2,
Fixed32 = 5
}