all keys are rebindable

This commit is contained in:
Anthony Samms
2025-11-09 10:16:01 -05:00
parent 2d9e55632c
commit fba17cba53
9 changed files with 64 additions and 37 deletions

View File

@@ -27,8 +27,14 @@ class PathsConfig(TypedDict):
tja_path: list[str]
video_path: list[str]
class Keys1PConfig(TypedDict):
class KeysConfig(TypedDict):
exit_key: str
fullscreen_key: str
borderless_key: str
back_key: str
restart_key: str
class Keys1PConfig(TypedDict):
left_kat: list[str]
left_don: list[str]
right_don: list[str]
@@ -72,6 +78,7 @@ class Config(TypedDict):
nameplate_1p: NameplateConfig
nameplate_2p: NameplateConfig
paths: PathsConfig
keys: KeysConfig
keys_1p: Keys1PConfig
keys_2p: Keys2PConfig
gamepad: GamepadConfig