hadean-old/src/ui/view/PawnsView.ts

10 lines
204 B
TypeScript
Raw Normal View History

2021-06-19 12:40:01 -04:00
import { View } from "../View.js";
2021-06-18 21:29:45 -04:00
export default class PawnsView extends View {
constructor() {
super();
this.name = 'Pawns';
}
keypress: (key: { full: string; }) => void;
render() { void 0 };
}