feat: screens component system
This commit is contained in:
9
src/screens/home/top/index.ts
Normal file
9
src/screens/home/top/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { StatusBar } from "./statusBar";
|
||||
|
||||
export class HomeTopScreen {
|
||||
private statusBar = new StatusBar();
|
||||
|
||||
render(ctx: CanvasRenderingContext2D): void {
|
||||
this.statusBar.render(ctx);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user