core2d
Version:
Multiplatform 2D interaction engine
26 lines (23 loc) • 586 B
JavaScript
"use strict";
import { Command } from "./Command.mjs";
import { Key } from "./Key.mjs";
export const KeyMap = {
[]: Command.UP,
[]: Command.UP,
[]: Command.UP,
[]: Command.DOWN,
[]: Command.DOWN,
[]: Command.DOWN,
[]: Command.LEFT,
[]: Command.LEFT,
[]: Command.LEFT,
[]: Command.RIGHT,
[]: Command.RIGHT,
[]: Command.RIGHT,
[]: Command.A,
[]: Command.B,
[]: Command.X,
[]: Command.Y,
[]: Command.START,
[]: Command.SELECT,
};