├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── res ├── File │ └── high_score.txt ├── Images │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.gif │ ├── 8.jpg │ ├── 9.jpg │ ├── basket.JPG │ ├── bomb.png │ ├── demo │ │ ├── best_scores.gif │ │ ├── gameplay.gif │ │ ├── gameplay2.gif │ │ ├── instructions.gif │ │ └── start.gif │ ├── explosion.gif │ ├── small_basket.jpg │ └── small_minion.jpg ├── Screenshots │ ├── crashed.JPG │ ├── credits.JPG │ ├── game_over.JPG │ ├── high_score.JPG │ ├── instructions.JPG │ └── menu.JPG └── Songs │ └── game_music.wav └── src └── game.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/README.md -------------------------------------------------------------------------------- /res/File/high_score.txt: -------------------------------------------------------------------------------- 1 | 86 -------------------------------------------------------------------------------- /res/Images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/1.jpg -------------------------------------------------------------------------------- /res/Images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/2.jpg -------------------------------------------------------------------------------- /res/Images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/3.jpg -------------------------------------------------------------------------------- /res/Images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/4.jpg -------------------------------------------------------------------------------- /res/Images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/5.jpg -------------------------------------------------------------------------------- /res/Images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/6.jpg -------------------------------------------------------------------------------- /res/Images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/7.gif -------------------------------------------------------------------------------- /res/Images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/8.jpg -------------------------------------------------------------------------------- /res/Images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/9.jpg -------------------------------------------------------------------------------- /res/Images/basket.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/basket.JPG -------------------------------------------------------------------------------- /res/Images/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/bomb.png -------------------------------------------------------------------------------- /res/Images/demo/best_scores.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/demo/best_scores.gif -------------------------------------------------------------------------------- /res/Images/demo/gameplay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/demo/gameplay.gif -------------------------------------------------------------------------------- /res/Images/demo/gameplay2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/demo/gameplay2.gif -------------------------------------------------------------------------------- /res/Images/demo/instructions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/demo/instructions.gif -------------------------------------------------------------------------------- /res/Images/demo/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/demo/start.gif -------------------------------------------------------------------------------- /res/Images/explosion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/explosion.gif -------------------------------------------------------------------------------- /res/Images/small_basket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/small_basket.jpg -------------------------------------------------------------------------------- /res/Images/small_minion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Images/small_minion.jpg -------------------------------------------------------------------------------- /res/Screenshots/crashed.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Screenshots/crashed.JPG -------------------------------------------------------------------------------- /res/Screenshots/credits.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Screenshots/credits.JPG -------------------------------------------------------------------------------- /res/Screenshots/game_over.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Screenshots/game_over.JPG -------------------------------------------------------------------------------- /res/Screenshots/high_score.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Screenshots/high_score.JPG -------------------------------------------------------------------------------- /res/Screenshots/instructions.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Screenshots/instructions.JPG -------------------------------------------------------------------------------- /res/Screenshots/menu.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Screenshots/menu.JPG -------------------------------------------------------------------------------- /res/Songs/game_music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/res/Songs/game_music.wav -------------------------------------------------------------------------------- /src/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesgeorge007/Catch-It/HEAD/src/game.py --------------------------------------------------------------------------------