This is a simple puzzle game where the aim is to slide pieces to make an image out of tiles.
Sliding puzzles are a common type of grid puzzle; information about them can be found on Wikipedia.
Control the tiles by using the W
A
, S
, D
or arrow keys on a keyboard.
This project can be built and run with the command
zig build run
A release build can be created with the following command.
zig build -Doptimize=ReleaseFast
Building the project currently requires a recent dev build of the compiler, (e.g. 0.14.0-dev.3020+c104e8644
), available from the download page on ziglang.org
.
This project has been tested with on Windows 11; compilation of the game on other operating systems has not been tested.
The project is written in Zig and uses two Zig gamedev libraries, currently bundled with the repo: zglfw
, zopengl
.
Both are available on GitHub at: https://github.com/zig-gamedev
The entire development of this app (basically) was streamed on Twitch and recordings were uploaded to YouTube at:
https://www.youtube.com/@10aded
The project was originally built with a dev Zig 0.14.0-dev.3020+c104e8644
compiler.