Fix sample cart, and get ready for edit mode

This commit is contained in:
dylan
2023-05-04 20:27:01 -07:00
parent 2a7003b443
commit 6b90d883e9
3 changed files with 25 additions and 8 deletions

14
editmode.ts Normal file
View File

@ -0,0 +1,14 @@
import { clearScreen } from "./window.ts"
const update = () => {
}
const draw = () => {
clearScreen()
}
export const editmode = {
update,
draw,
}