Removed unused

This commit is contained in:
Emily 2019-03-13 06:34:49 +01:00
parent fddb66fb86
commit 3bfe846203
2 changed files with 0 additions and 20 deletions

View File

@ -2,5 +2,3 @@ from . import osuModes
from . import osuMods from . import osuMods
from . import osuRanks from . import osuRanks
from . import osuButtons from . import osuButtons
from . import typeSerializer

View File

@ -1,18 +0,0 @@
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])