Co-authored-by: Nilton Constantino <nilton.constantino@visma.com> Reviewed-on: #5
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
import {do_init_gfx, print_orange} from "./my_gfx";
|
|
import {do_pad, do_touch} from "./my_input";
|
|
import {do_fs} from "./my_fs";
|
|
|
|
export function tick(): void {
|
|
do_init_gfx();
|
|
do_pad();
|
|
do_touch();
|
|
do_fs();
|
|
print_orange();
|
|
} |