https://github.com/bclehmann/inkball
An incomplete recreation of InkBall, a game that came bundled with Windows Vista.
https://github.com/bclehmann/inkball
cplusplus game sdl2 video-game
Last synced: 8 months ago
JSON representation
An incomplete recreation of InkBall, a game that came bundled with Windows Vista.
- Host: GitHub
- URL: https://github.com/bclehmann/inkball
- Owner: bclehmann
- License: mit
- Created: 2021-04-12T22:41:56.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-20T00:39:22.000Z (over 4 years ago)
- Last Synced: 2025-05-12T17:14:38.072Z (about 1 year ago)
- Topics: cplusplus, game, sdl2, video-game
- Language: C++
- Homepage:
- Size: 2.85 MB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# InkBall
This is an InkBall game that's still in development. It doesn't use any game engine, it's just built on top of SDL (which was a big mistake).
# So Far
I have working collisions and you can draw an ink trail which the balls interact with:

Todo:
- [ ] Level creation (maybe)
# Building
These are not full instructions. I will revisit this once the game is finished.
For now, all dependencies are statically linked. You can see the dependencies in [dependencies.md](https://github.com/bclehmann/InkBall/blob/master/dependencies.md).
The project is compiled with GCC using the C++ 17 standard, although at the time of writing any C++ 14 or C++ 11 compatible compiler will work (provided you update [CMakeLists.txt](https://github.com/bclehmann/InkBall/blob/master/CMakeLists.txt) accordingly).