osu-repy/osuRepy/helpers/typeSerializer.py
2019-03-13 05:43:26 +01:00

19 lines
377 B
Python

NULL = bytes([0])
BOOL = bytes([1])
BYTE = bytes([2])
UINT16 = bytes([3])
UINT32 = bytes([4])
UINT64 = bytes([5])
SBYTE = bytes([6])
INT16 = bytes([7])
INT32 = bytes([8])
INT64 = bytes([9])
CHAR = bytes([10])
STRING = bytes([11])
SINGLE = bytes([12])
DOUBLE = bytes([13])
DECIMAL = bytes([14])
DATE = bytes([15])
BYTEARRAY = bytes([16])
CHARARRAY = bytes([17])