Files

13 lines
339 B
TypeScript
Raw Permalink Normal View History

export interface KeyBinding {
keys: string;
action: string;
}
export const KEY_BINDINGS: KeyBinding[] = [
{ keys: "4", action: "Insert coin" },
{ keys: "1", action: "Start game" },
{ keys: "Enter", action: "Launch ball" },
{ keys: "Left Shift", action: "Left flipper" },
{ keys: "Right Shift", action: "Right flipper" },
];