https://github.com/hellebenjamin/potatis-clicker
Clicker game
https://github.com/hellebenjamin/potatis-clicker
c clickergame game opengl
Last synced: about 2 months ago
JSON representation
Clicker game
- Host: GitHub
- URL: https://github.com/hellebenjamin/potatis-clicker
- Owner: HelleBenjamin
- License: gpl-2.0
- Created: 2025-05-21T20:34:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-22T09:01:17.000Z (about 1 year ago)
- Last Synced: 2025-06-18T05:06:20.188Z (about 1 year ago)
- Topics: c, clickergame, game, opengl
- Language: C
- Homepage:
- Size: 528 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: changelog.txt
- License: COPYING
Awesome Lists containing this project
README
Potatis Clicker: Remake
=======================
This game is a remake of my original Potatis Clicker, originally released on itch.io. Initially made in C# using Unity(a little overkill) as the engine. This remake is written in C and uses OpenGL as the engine. Aesthetics may seem a little downgrade compared to the original, but it will get better over time.
OpenGL 2.1 is the only minimum requirement. You should be able to run this any computer, even on an old potato(heh a funny joke).
Building
========
On windows:
MinGW is used as the compiler. You need to install GLUT to MinGW's include and lib folder.
For mingw32-make:
1. Run `mingw32-make` at the project directory
2. Run `main.exe`
For CMake:
1. Run `mkdir build` and `cd build`
2. Run `cmake .. -G "MinGW Makefiles"`
3. Run `mingw32-make`
4. Done
On linux:
Dependencies that must be installed:
1. `libglu1-mesa-dev`
2. `freeglut3-dev`
3. `mesa-common-dev`
4. `libglfw3-dev`, If not using the local version
You can use either `make` or `cmake`. CMake is prefered.
For make:
1. Run `make` at the project directory
2. Run `./main`
For CMake:
1. Run `cmake -B build` at the project directory
2. Run `cmake --build build`
3. Run `./build/PotatisClicker`
Third-party libraries
=====================
- GLFW
- GLAD
- GLU
- GLUT
- STB_IMAGE
License
=======
Potatis Clicker: Remake is licensed under the GNU Public License v2 (GPLv2). See COPYING for more information