1
0
Fork
You've already forked Test-Game
0
I'm learnin' here, please be gentle.
  • C 93.7%
  • CMake 6.3%
Find a file
2025年10月14日 12:50:59 -04:00
src Finally Make this a git repo 2025年10月14日 12:46:17 -04:00
thirdparty Finally Make this a git repo 2025年10月14日 12:46:17 -04:00
.gitignore Add gitignore 2025年10月14日 12:42:08 -04:00
.gitmodules Finally Make this a git repo 2025年10月14日 12:46:17 -04:00
CMakeLists.txt Finally Make this a git repo 2025年10月14日 12:46:17 -04:00
Readme.md Mention cloning with recursive so it grabs submodules 2025年10月14日 12:50:59 -04:00

What is this?

Honestly who knows lmao.

This is just me trying to make a 2D game from scratch (aside from SDL2 and Tile Engine). Mostly doing this just to learn and for fun, maybe someday I'll acutally get some gameplay working (probably not).

Currently really only basic engine stage for now.

Build Instructions

Your usual cmake deal of:

git clone --recursive https://codeberg.org/NepDisk/Test-Game.git
cd Test-Game
mkdir build
cd build
cmake ..
make -j$(nproc)