14 lines
152 B
TypeScript
14 lines
152 B
TypeScript
![]() |
import { clearScreen } from "./window.ts"
|
||
|
|
||
|
const update = () => {
|
||
|
|
||
|
}
|
||
|
|
||
|
const draw = () => {
|
||
|
clearScreen()
|
||
|
}
|
||
|
|
||
|
export const editmode = {
|
||
|
update,
|
||
|
draw,
|
||
|
}
|