Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jakubrada
/
ShyguysWingmanJS
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
30f1ff2
ShyguysWingmanJS
/
src
/
index.js
jakubrada
Upload 57 files
30f1ff2
verified
2 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
{
Game
}
from
"./game.js"
;
// start the game when DOM is loaded
document
.
addEventListener
(
"DOMContentLoaded"
,
() =>
{
const
game =
new
Game
();
game.
run
();
});