michals-silly-game-frontend/src/app/mario/mario.component.html

10 lines
345 B
HTML
Raw Normal View History

2025-04-08 07:51:15 +00:00
<div style="width: 100%; height: 100%; overflow-x: scroll; overflow-y: hidden;">
2025-04-07 09:20:49 +00:00
<canvas id="gameCanvas"></canvas>
</div>
2025-04-08 09:05:09 +00:00
<div class="hud">
<div class="jump-counter">
Jumps: {{ totalJumps }}
<button (click)="restartGame()">Restart</button>
<button (click)="inviteFriend()">Invite Friend</button>
</div>
</div>