shogiground
Version:
lishogi.org shogi ui
40 lines • 594 B
JavaScript
export const colors = ['sente', 'gote'];
export const files = [
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'10',
'11',
'12',
'13',
'14',
'15',
'16',
];
export const ranks = [
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
];
export const allKeys = Array.prototype.concat(...ranks.map((r) => files.map((f) => f + r)));
export const notations = ['numeric', 'japanese', 'engine', 'hex', 'dizhi'];
//# sourceMappingURL=constants.js.map