fantasy-console/editmode.ts

14 lines
152 B
TypeScript
Raw Normal View History

import { clearScreen } from "./window.ts"
const update = () => {
}
const draw = () => {
clearScreen()
}
export const editmode = {
update,
draw,
}