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

View File

@@ -1,5 +1,5 @@
import pygame
import pygameController as PC
import pygameControls as PC
if __name__ == "__main__":
pygame.init()

View File

@@ -1,4 +1,4 @@
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
from pydualsense import *
BATTERY_STATE = {

View File

@@ -1,5 +1,5 @@
import pygame
from pygameController.controlsbase import ControlsBase
from pygameControls.controlsbase import ControlsBase
class GenericController(ControlsBase):
def __init__(self, joy):

View File

@@ -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):

View File

@@ -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):

View File

@@ -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):

View File

@@ -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):

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=[],