├── .gitattributes ├── README.md ├── engine.js ├── game.js ├── index.html ├── main.css └── test.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonburgHighSchool/idle-game/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonburgHighSchool/idle-game/HEAD/README.md -------------------------------------------------------------------------------- /engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonburgHighSchool/idle-game/HEAD/engine.js -------------------------------------------------------------------------------- /game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonburgHighSchool/idle-game/HEAD/game.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonburgHighSchool/idle-game/HEAD/index.html -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- 1 | .btn { 2 | transition: opacity 1000ms linear; 3 | } 4 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarrisonburgHighSchool/idle-game/HEAD/test.js --------------------------------------------------------------------------------