A simple console arcade game written in V where you control a dino and avoid cactuses and birds.
- The game runs in the terminal.
- Controls are simple: jump and quit.
- The score increases every second frame.
- Enemies appear randomly and move from right to left.
- On collision, the game ends and can be restarted.
- Install V: https://vlang.io
- Clone project:
git clone https://github.com/egevtech/dino- Change into the project folder:
cd dino- Run the game:
v run .- Space — jump.
q— quit the game.- After game over:
r— restart.q— quit.
- The game expects a terminal size of at least
100x15. - It uses the built-in
termmodule for rendering and input. - This README was written by Github Copilot with a small edit from me, and the rest was created without using AI.