You are probably familiar with tile-based games like Stardew Valley. A game map is constructed piece by piece with the use of tiles organized in a tileset. A map is basically many small images stitched together. I have made a Python3 program that converts a tileset image to a C 3d array which can be…
All posts tagged C
Stack implementation in C
I implemented a stack using singly linked list in C. Here is the GitHub link for it.