From d2bf9a8a1e0c9bbf1b526858827c32fd8a4017b3 Mon Sep 17 00:00:00 2001 From: Lerking Date: Mon, 5 May 2025 11:26:55 +0200 Subject: [PATCH] Update pygameControls/enums.py --- pygameControls/enums.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pygameControls/enums.py b/pygameControls/enums.py index 447a2ec..8250bec 100644 --- a/pygameControls/enums.py +++ b/pygameControls/enums.py @@ -4,4 +4,9 @@ class ConnectionType(Enum): 'usb' = 1 'bluetooth' = 2 'wireless' = 3 + 'unknown' = -1 + +class InputType(Enum): + 'directinput' = 1 + 'xinput' = 2 'unknown' = -1 \ No newline at end of file