shogi-player
Version:
Shogi board web components has functions for replaying, manipulating, and editing
17 lines (14 loc) • 427 B
JavaScript
import { ApplicationMemoryRecord } from "../models/application_memory_record.js"
export class DevToolsPositionInfo extends ApplicationMemoryRecord {
static get define() {
return [
{ key: "left", name: "←", },
{ key: "bottom", name: "↓", },
{ key: "right", name: "→", },
{ key: "top", name: "↑", },
]
}
get css_class() {
return `is_dev_tools_position_${this.key}`
}
}