Skip to content
/ Nimble Public

A small SFML game with circles

License

Notifications You must be signed in to change notification settings

Patai5/Nimble

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nimble

Game where you eat smaller circles and grow, however be careful of touching the larger ones!

Very original, yes... Actually i didn't get the idea from agar.io, it comes from some different web game that I used to play when I was smaller but lost the url since then. - The original game has been found since then :D Unfortunately it's not online anymore... But another clone of it was made called Polka Dot Game, which looks and plays way better! Try it out :)

Screenshots

nimble.mp4

Compiling

Windows

Execute the following command in the project's root directory:

g++ -c src/*.cpp -Wall -m64 -I include -I <SFML-PATH>/include && g++ *.o -o bin/release/main.exe -L <SFML-PATH>/lib -mwindows -lsfml-graphics -lsfml-window -lsfml-system

After compiling, you need to include the config.cfg file, the fonts/ folder and the needed SFML .dll files into the .exe directory for it to run.

Background

This is my first ever c++ project, actually when I started I didn't even know c++.
So please take the code with a grain of salt ;)