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