Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kettek/goro
Going Rogue, or goRo, is a multi-backend library for writing roguelikes in Go.
https://github.com/kettek/goro
Last synced: about 1 month ago
JSON representation
Going Rogue, or goRo, is a multi-backend library for writing roguelikes in Go.
- Host: GitHub
- URL: https://github.com/kettek/goro
- Owner: kettek
- License: lgpl-3.0
- Created: 2019-06-19T12:51:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-20T07:37:17.000Z (over 2 years ago)
- Last Synced: 2024-06-20T00:31:20.924Z (7 months ago)
- Language: Go
- Size: 121 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Going Rogue / goRo
This library is for writing roguelikes in Go. Please note that it is highly experimental at the moment.## Building
goRo can have the following tags supplied during building:* disableTCell
* enableEbitenIf you wish to use the graphical interface only:
```
# go build -tags "disableTCell enableEbiten"
```If you wish to use the terminal interface only:
```
# go build
```If you wish to have support for both and choose one programmatically:
```
# go build -tags "enableEbiten"
```