Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suhanovaa/c-rogue-0
https://github.com/suhanovaa/c-rogue-0
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/suhanovaa/c-rogue-0
- Owner: SuhanovAA
- License: unlicense
- Created: 2024-02-26T08:38:30.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-09T09:59:21.000Z (10 months ago)
- Last Synced: 2024-11-07T06:43:02.478Z (2 months ago)
- Language: C
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Roguelike-0
Roguelike (or rogue-like) is a style of role-playing game traditionally characterized by a dungeon crawl through procedurally generated levels, turn-based gameplay, grid-based movement, and permanent death of the player character.
How to build:
- Windows:
install MinGW and PDCurses. How to do it: video tutorial
gcc -Wall -Wextra main.c -o roglik.exe -lpdcurses -static
- Linux:
install NCurses
gcc main.c -o roglik.bin -lcurses![START_WINDOWS_TERMINAL_GAME](./image/start_game.png)