Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
* enableEbiten

If 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"
```