Files
llgo/c/raylib/README.md

31 lines
462 B
Markdown
Raw Normal View History

2024-07-08 23:07:47 +08:00
# LLGo wrapper of raysan5/raylib
2024-07-08 22:24:41 +08:00
## How to install
### on macOS (Homebrew)
```sh
brew install raylib
```
### on Linux (Debian/Ubuntu)
```sh
TODO
```
## Demos
The `_demo` directory contains our demos (it start with `_` to prevent the `go` command from compiling it):
2024-07-08 23:07:47 +08:00
- [tetris](_demo/tetris/tetris.go): tetris powered by raylib
2024-07-08 22:24:41 +08:00
### How to run demos
To run the demos in directory `_demo`:
```sh
cd <demo-directory> # eg. cd _demo/tetris
llgo run .
```