https://github.com/claudemuller/tyler.c
A tile editor written in C and SDL2.
https://github.com/claudemuller/tyler.c
c sdl2 tilemap-editor
Last synced: 10 months ago
JSON representation
A tile editor written in C and SDL2.
- Host: GitHub
- URL: https://github.com/claudemuller/tyler.c
- Owner: claudemuller
- Created: 2023-03-26T14:16:49.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-20T08:25:30.000Z (almost 3 years ago)
- Last Synced: 2025-04-08T23:31:58.487Z (about 1 year ago)
- Topics: c, sdl2, tilemap-editor
- Language: C++
- Homepage:
- Size: 664 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tyler.c
A tile editor written in C and SDL2.
# Requirements
- [gcc](https://gcc.gnu.org/)
- or [clang](https://clang.llvm.org/)
- [make](https://www.gnu.org/software/make/)
- [SDL2](https://www.libsdl.org/)
# Build
```bash
make build
```
# Run
```bash
make run
```
# Build a Debug Binary
```bash
make debug-build
```
# Start `lldb` or `gdb` With Debug Binary
```bash
make debug
```