Update pygameControls/enums.py

This commit is contained in:
2025-05-05 11:31:23 +02:00
parent 74f2665a2f
commit e5f6d5697b

View File

@@ -1,12 +1,12 @@
from enum import Enum
class ConnectionType(Enum):
'usb' = 1
'bluetooth' = 2
'wireless' = 3
'unknown' = -1
USB = 1
BLUETOOTH = 2
WIRELESS = 3
Unknown = -1
class InputType(Enum):
'directinput' = 1
'xinput' = 2
'unknown' = -1
DirectInput = 1
XInput = 2
Unknown = -1