A rhythm-based incremental game where players click in time with the beat to earn currency and purchase upgrades.
- Python 3.12+
- Poetry
poetry installpoetry run python -m beatclicker.main- Click the center beat icon to earn notes
- ESC or close window to exit
src/beatclicker/
├── main.py # Entry point
├── game.py # Main game loop
└── ui/ # UI components
├── components.py # Base components (Label, Panel, Button)
├── currency_display.py
├── beat_icon.py
├── tempo_bar.py
├── store_panel.py
└── menu_tab.py