shogi-player
Version:
Shogi board web components has functions for replaying, manipulating, and editing
18 lines (16 loc) • 560 B
JavaScript
import { ApplicationMemoryRecord } from "./application_memory_record.js"
export class PlaceYomiageInfo extends ApplicationMemoryRecord {
static get define() {
return [
{ key: "1", yomiage: "1", },
{ key: "2", yomiage: "にー", },
{ key: "3", yomiage: "さん", },
{ key: "4", yomiage: "よん", },
{ key: "5", yomiage: "ごー", },
{ key: "6", yomiage: "6", },
{ key: "7", yomiage: "なな", },
{ key: "8", yomiage: "8", },
{ key: "9", yomiage: "きゅー", },
]
}
}