create-phaser-app
Version:
A boiler plate to start your phaser app with webpack4, babel7+ and Phaser 3
15 lines (13 loc) • 429 B
JavaScript
window.WebFontConfig = {
google: { families: ['Press Start 2P', 'Rajdhani'] }
};
(function() {
var wf = document.createElement('script');
wf.src =
('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();