A desktop stylized version of snake game made from scratch in C++/OpenGL. This is the same snake game we all played in our childhood .
- You will have to download project1.exe to play the game.
- To run the .exe file without error, You have to download FreeGlut.dll
- After downloading the dll file , paste this file according to your computer architecture
- If 64-bit architecture then paste the file in C:\Windows\SysWOW64\
- IF 32-bit architecture then paste the file in C:\Windows\System32\
- C++
- OpenGL-freeglut
-
gcc/g++ >= 5.4
- Linux: gcc / g++ is installed by default on most Linux distros
- Mac: same deal as make - install Xcode command line tools
- Windows: recommend using MinGW
-
CODEBLOCKS-IDE
Feel free to file a new issue with a respective title and description on the SNAKE-Game. If you already found a solution to your problem, I would love to review your pull request!
- Clone the repository
$git clone https://github.com/Aayush9027/SNAKE_CPP.git
- Check the status of your file
$git status
3.Try using CODEBLOCK for editing your files
$git code .
- To directly add your files to github
$git add .
- After writing your code commit your changes
$git commit -m <message>
- To push your code to reposoitory
$git push origin master
Thats all about installation and version control with Git