feat: screens component system

This commit is contained in:
2025-12-13 18:55:39 +01:00
parent 108ee082d8
commit b29fbe8f7b
7 changed files with 92 additions and 31 deletions

View File

@@ -0,0 +1,9 @@
export class HomeBottomScreen {
render(ctx: CanvasRenderingContext2D): void {
ctx.fillStyle = "#ffffff";
ctx.font = "10px NDS10";
ctx.textAlign = "right";
ctx.textBaseline = "bottom";
ctx.fillText("Contact >", 255, 191);
}
}