cozy-games/src/index.js
2019-12-16 17:59:25 +08:00

15 lines
No EOL
388 B
JavaScript

/*
Author: Ayo Ayco
Email: ramon.aycojr@gmail.com
Website: AyoAyco.com
Blog: FullHacker.com
Live: games.fullhacker.com/minesweeper
*/
import './index.css';
import './services/loading/loading.css';
import './assets/favicon.ico';
import { Minesweeper } from './minesweeper.js';
/** start the game **/
const myMinesweeper = new Minesweeper();
myMinesweeper.initialize();