2026-08-23 05:25:15 +02:00
|
|
|
export interface KeyBinding {
|
|
|
|
|
keys: string;
|
|
|
|
|
action: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const KEY_BINDINGS: KeyBinding[] = [
|
2026-08-23 20:15:41 +02:00
|
|
|
{ keys: "4", action: "Insert coin" },
|
|
|
|
|
{ keys: "1", action: "Start game" },
|
|
|
|
|
{ keys: "Enter", action: "Launch ball" },
|
2026-08-23 05:25:15 +02:00
|
|
|
{ keys: "Left Shift", action: "Left flipper" },
|
|
|
|
|
{ keys: "Right Shift", action: "Right flipper" },
|
|
|
|
|
];
|