From e5f6d5697b3c830e5372a60b29e68dbb7a69c571 Mon Sep 17 00:00:00 2001 From: Lerking Date: Mon, 5 May 2025 11:31:23 +0200 Subject: [PATCH] Update pygameControls/enums.py --- pygameControls/enums.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pygameControls/enums.py b/pygameControls/enums.py index 8250bec..394dd52 100644 --- a/pygameControls/enums.py +++ b/pygameControls/enums.py @@ -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 \ No newline at end of file + DirectInput = 1 + XInput = 2 + Unknown = -1 \ No newline at end of file