https://github.com/adsgames/roller-thrower-die-soon
Throw guests to their death for fun!
https://github.com/adsgames/roller-thrower-die-soon
allegro5 game roller-coaster
Last synced: 2 months ago
JSON representation
Throw guests to their death for fun!
- Host: GitHub
- URL: https://github.com/adsgames/roller-thrower-die-soon
- Owner: AdsGames
- Created: 2018-05-04T15:45:00.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2026-03-19T04:11:40.000Z (4 months ago)
- Last Synced: 2026-03-19T19:07:57.637Z (4 months ago)
- Topics: allegro5, game, roller-coaster
- Language: C++
- Homepage: https://adsgames.github.io/roller-thrower-die-soon/
- Size: 9.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Roller Thrower Die Soon
Throw guests to their death for fun. Roller Thrower Die Soon is our submission to Tojam in Allegro 5.
## Getting started
### Windows (MSYS2)
#### Install Libraries
```bash
pacman --noconfirm -S mingw-w64-i686-gcc-libs mingw-w64-i686-dumb mingw-w64-i686-flac mingw-w64-i686-opusfile mingw-w64-i686-freetype mingw-w64-i686-libjpeg-turbo mingw-w64-i686-libpng mingw-w64-i686-libvorbis mingw-w64-i686-libwebp mingw-w64-i686-openal mingw-w64-i686-physfs mingw-w64-i686-allegro
```
#### Build
```bash
cmake -G "MSYS Makefiles" .
```
```bash
make
```
### Mac OS
#### Install Libraries
```bash
brew install allegro
```
#### Build
```bash
cmake -G "Unix Makefiles" .
```
```bash
make
```
### Linux
#### Install Libraries
```bash
sudo apt install liballegro5-dev liballegro-acodec5-dev liballegro-audio5-dev liballegro-image5-dev liballegro-dialog5-dev liballegro-ttf5-dev
```
#### Build
```bash
cmake -G "Unix Makefiles" .
```
```bash
make
```