Files
fantasy-console/editmode.ts
2023-05-04 20:27:01 -07:00

14 lines
152 B
TypeScript

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