pep.py/constants/dataTypes.py

13 lines
278 B
Python
Raw Normal View History

2016-04-19 17:40:59 +00:00
"""Bancho packets data types"""
2016-09-02 15:16:22 +00:00
BYTE = 0
UINT16 = 1
SINT16 = 2
UINT32 = 3
SINT32 = 4
UINT64 = 5
SINT64 = 6
STRING = 7
FFLOAT = 8 # because float is a keyword
BBYTES = 9
INT_LIST = 10 # TODO: Maybe there are some packets that still use uInt16 + uInt32 thing somewhere.