import { geoLocationHandler } from './map.js'; import './game.js'; feather.replace(); (function () { if (document.getElementById('map') != undefined) geoLocationHandler(); let start_button = document.querySelector('.game .start-button'); if (start_button != undefined) start_button.addEventListener('click', launchGame); }());