Renamed. /JL

This commit is contained in:
2025-04-19 20:39:24 +02:00
parent cf26bd02e1
commit 971e18e633
14 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import pygame
import pygameController as PC
import pygameControls as PC
if __name__ == "__main__":
pygame.init()
@@ -1,4 +1,4 @@
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
from pydualsense import *
BATTERY_STATE = {
@@ -1,5 +1,5 @@
import pygame
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
class GenericController(ControlsBase):
def __init__(self, joy):
@@ -13,7 +13,7 @@ This controller is a usb controller, with the following features.
"""
import pygame
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
from enum import Enum
class InputMode(Enum):
@@ -13,7 +13,7 @@ This controller is a usb controller, with the following features.
"""
import pygame
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
from enum import Enum
class InputMode(Enum):
@@ -13,7 +13,7 @@ This controller is a usb controller, with the following features.
"""
import pygame
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
from enum import Enum
class InputMode(Enum):
@@ -13,7 +13,7 @@ This controller is a usb controller, with the following features.
"""
import pygame
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
from enum import Enum
class InputMode(Enum):
+1 -1
View File
@@ -2,7 +2,7 @@ if __name__ == "__main__":
from setuptools import setup, find_packages
setup(
name='pygameController',
name='pygameControls',
version='0.0.4',
packages=find_packages(),
install_requires=[],