Go to file
2024-11-03 15:13:24 -05:00
include fix clown vomit by fixing opengl version 2024-08-29 23:11:52 -04:00
src change to the rendering system so it's not god awful oh my lord 2024-11-03 15:13:24 -05:00
CMakeLists.txt change to the rendering system so it's not god awful oh my lord 2024-11-03 15:13:24 -05:00
LICENSE first commit 2024-08-24 00:47:58 -04:00
README.md update readme 2024-10-08 20:13:51 -04:00

Frillrun

My entry for the 2024 WeightGaming Gain Jam. Action game where you collect stuff while random events occur.

Build

Dependencies

- SDL2
- SDL_image
- SDL_mixer
- SDL_ttf
- GLEW

To play the game, you'll also need the game resources, get those here. and place the res folder in the same directory as the executable.

Linux

This repository uses CMake to compile, so:

mkdir build

cd build

cmake ..

make

Windows

I used MinGW for the Windows build, so basically the same as Linux but you'll need to use MSYS, MinGW, etc. to compile it. I would recommend using ninja with cmake, so cmake .. -G Ninja and then ninja in the build directory.