├── .idea ├── .gitignore ├── aviator-inspired-game.iml └── modules.xml ├── LICENSE ├── img ├── aviator.spribe.background copy.jpeg └── aviator_jogo.png ├── index.html ├── script.js └── style.css /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/aviator-inspired-game.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/.idea/aviator-inspired-game.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/LICENSE -------------------------------------------------------------------------------- /img/aviator.spribe.background copy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/img/aviator.spribe.background copy.jpeg -------------------------------------------------------------------------------- /img/aviator_jogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/img/aviator_jogo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozgeonec/aviator-betting-game-clone/HEAD/style.css --------------------------------------------------------------------------------