diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-12-24 19:35:19 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-12-24 19:35:19 +0100 |
commit | 36b47edc513859595a02ca60d76724c1cf0186fe (patch) | |
tree | 3c1deb8facf82ea90d972067f0363c870baf6b57 | |
parent | 719548068b0db8c9fda563a9a673963b30e49768 (diff) |
Get rid of duplicated class
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
-rwxr-xr-x | cameltris.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cameltris.py b/cameltris.py index 542e852..e7b2b1c 100755 --- a/cameltris.py +++ b/cameltris.py @@ -11,15 +11,6 @@ import pygame from pycameltris.controller import KeyboardController, JoystickController, Input -class PS3Controller(enum.Enum): - CROSS = 0 - CIRCLE = 1 - TRIANGLE = 2 - SQUARE = 3 - DOWN = 14 - LEFT = 15 - RIGHT = 16 - class WouldCollide(Exception): pass |