https://github.com/quonverbat/cardboard-pirates
2-player ship combat game, built with SDL and C++
https://github.com/quonverbat/cardboard-pirates
2-player combat game sdl2 ships
Last synced: 4 months ago
JSON representation
2-player ship combat game, built with SDL and C++
- Host: GitHub
- URL: https://github.com/quonverbat/cardboard-pirates
- Owner: quonverbat
- License: gpl-3.0
- Created: 2025-01-28T14:10:20.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-05-09T19:15:51.000Z (5 months ago)
- Last Synced: 2025-06-10T19:49:55.798Z (4 months ago)
- Topics: 2-player, combat, game, sdl2, ships
- Language: C++
- Homepage:
- Size: 15.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cardboard-Pirates
2-player ship combat game, built with [SDL](https://github.com/libsdl-org/SDL) and C++.
## Prerequisites
- [SDL](https://github.com/libsdl-org/SDL) (version 2)
- [SDL_mixer](https://github.com/libsdl-org/SDL_mixer) (version 2)
- [SDL_image](https://github.com/libsdl-org/SDL_image) (version 2)
- [SDL_ttf](https://github.com/libsdl-org/SDL_ttf) (version 2)
- A compiler.# Linux
## Installation
### Arch:
```bash
sudo pacman -S sdl2 sdl2_mixer sdl2_image sdl2_ttf
```
---
### Ubuntu/Debian:
```bash
sudo apt-get install libsdl2-dev libsdl2-mixer-dev libsdl2-image-dev libsdl2-ttf-dev
```
---### Gentoo:
```bash
sudo emerge media-libs/libsdl2 media-libs/libsdl2_mixer media-libs/libsdl2_image media-libs/libsdl2_ttf
```
## Compilation
``` bash
make -j $(nproc)
```## Windows
You can download the `.exe` file from the `Releases` section, or compile it yourself based on your environment by downloading the release with the `-source` suffix (DLLs are included).