A simple aim trainer game built with Python and Pygame, designed to help players improve their aiming speed and accuracy across different difficulty levels. Choose a difficulty and try to hit as many targets as possible before the timer runs out!
The game begins with a welcome menu where you can choose between three levels of difficulty: Easy, Medium, and Hard. Once you select a level, a countdown timer will start. Your goal is to hit as many targets as you can by clicking on them before the timer ends. After each round, your accuracy and score will be displayed.
git clone https://github.com/AadityaPanda/AimTrainer.git
pip install pygame
python AimTrainer.py
AimTrainer/
├── assets/
│ ├── images/
│ │ └── targetblue.jpg # Target image
│ ├── sounds/
│ │ ├── snipersound.wav # Shooting sound effect
│ │ └── metalHit.wav # Hit sound effect
│ └── texts/
│ ├── easy.txt # Config file for easy difficulty
│ ├── medium.txt # Config file for medium difficulty
│ └── hard.txt # Config file for hard difficulty
├── aim_trainer_game.py # Main game file
└── README.md