add player rotation display

This commit is contained in:
JOLIMAITRE Matthieu 2024-10-20 22:27:03 +02:00
parent bfb92c513d
commit e502ca00de
3 changed files with 9 additions and 5 deletions

View file

@ -5,9 +5,14 @@ import { query_in_rect } from "./world.ts";
export class CompDisplay {
display;
constructor(display: string) {
this.display = display;
}
update(display: string) {
this.display = display;
}
}
export function sys_render_world(center: Vec2, size: Vec2) {