some more cart infrastructure

This commit is contained in:
dylan
2023-05-02 17:06:54 -07:00
parent a7b675d541
commit fdc8f97aee
7 changed files with 61 additions and 57 deletions

View File

@ -3,6 +3,7 @@ import {
clearScreen,
} from "./window.ts";
import { font } from "./font.ts";
// import { codeSheet } from "./sheet.ts";
// deno-fmt-ignore
const sprites = [
@ -53,9 +54,10 @@ const drawText = (x: number, y: number, text: string) => {
}
const faux = {
clearScreen,
drawSprite,
drawText,
clear_screen: clearScreen,
draw_sprite: drawSprite,
draw_text: drawText,
// code_sheet: codeSheet,
};
export default faux;