[oden] Oh boy here we go

This commit is contained in:
John Doty 2023-06-21 21:57:32 -07:00
parent 8218b88820
commit 14f9eb655f
4 changed files with 206 additions and 31 deletions

View file

@ -1,11 +1,11 @@
import * as graphics from 'graphics';
import { cls, print } from "graphics";
function init() {
graphics.print("Hello world!");
export function init() {
print("Hello world!");
}
function update() {}
export function update() {}
function draw() {}
export { init, update, draw }
export function draw() {
cls(0.1, 0.2, 0.3);
}