Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcmoyer/defense_of_ufeff
Tower defense for a gamejam
https://github.com/jcmoyer/defense_of_ufeff
game gamedev tower-defense zig
Last synced: about 1 month ago
JSON representation
Tower defense for a gamejam
- Host: GitHub
- URL: https://github.com/jcmoyer/defense_of_ufeff
- Owner: jcmoyer
- Created: 2022-10-14T18:57:17.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-25T04:04:50.000Z (4 months ago)
- Last Synced: 2024-08-25T05:19:52.591Z (4 months ago)
- Topics: game, gamedev, tower-defense, zig
- Language: Zig
- Homepage: https://jcmoyer.itch.io/defense-of-ufeff
- Size: 1.18 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
README
# Building
Requires a zig compiler, and optionally python3 to install dependencies.
```
>python3 install-deps.py
>zig build
```# Dependencies
- [SDL](https://www.libsdl.org/). zlib license.
- [zmath](https://github.com/michal-z/zig-gamedev). MIT license.
- [stb_image, stb_vorbis](https://github.com/nothings/stb). MIT license.
- [zig-opengl](https://github.com/MasterQ32/zig-opengl/). Bindings are in the
public domain.# License
All code under `src/` explicitly has no license, with the exception of:
1. `src/sdl.zig`: this file contains handwritten bindings with portions of code
copied from SDL. It is likewise licensed under the zlib license.`thirdparty/stb/` contains additional zig bindings that are likewise licensed
under the MIT License or as Public Domain (unlicense.org), whichever you prefer.