CaveCube

2 years ago
5

A Minecraft/Infiniminer clone game I'm working on (using the OpenGL knowledge I've picked up over the last few months) written in the best programming language: C (not C++).
https://github.com/PQCraft/CaveCube
It's currently in pre-alpha and doesn't have a README file on the repo.

For Linux, install GLFW (you will probably need to manually build GLFW on Debian-based distros due to the libglfw3-dev package being outdated), download and extract the source code, open the code folder in a terminal, and type in `make -j$(nproc) && ./cavecube`.

For Windows, you need to install MinGW and Make for Windows. After you install both of these programs, you need to add their bin folders to your PATH environment variable so that typing in `gcc --version` and `make --version` doesn't produce an error. After that, download the GLFW development binaries and put them into the appropriate location in your MinGW folder. You can now run `make -j[put the number of CPU cores you have here] && .\cavecube.exe`.

Loading comments...