mirror of
https://github.com/kuhyx/slavic_game_jam.git
synced 2026-07-04 13:03:07 +02:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
import './style.css'
|
|
import { Game } from './game.js'
|
|
|
|
// Initialize the game when the page loads
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const canvas = document.getElementById('gameCanvas');
|
|
const game = new Game(canvas);
|
|
|
|
// Start the game
|
|
game.start();
|
|
});
|