Update pygameControls/enums.py
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
|
||||||
class ConnectionType(Enum):
|
class ConnectionType(Enum):
|
||||||
'usb' = 1
|
USB = 1
|
||||||
'bluetooth' = 2
|
BLUETOOTH = 2
|
||||||
'wireless' = 3
|
WIRELESS = 3
|
||||||
'unknown' = -1
|
Unknown = -1
|
||||||
|
|
||||||
class InputType(Enum):
|
class InputType(Enum):
|
||||||
'directinput' = 1
|
DirectInput = 1
|
||||||
'xinput' = 2
|
XInput = 2
|
||||||
'unknown' = -1
|
Unknown = -1
|
||||||
Reference in New Issue
Block a user