From aa9254eeb065c5cc5431d7e598a7c3a6f1235fe8 Mon Sep 17 00:00:00 2001 From: luoliwoshang <2643523683@qq.com> Date: Mon, 8 Jul 2024 22:24:41 +0800 Subject: [PATCH] README:raylib --- c/raylib/README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 c/raylib/README.md diff --git a/c/raylib/README.md b/c/raylib/README.md new file mode 100644 index 00000000..707f6847 --- /dev/null +++ b/c/raylib/README.md @@ -0,0 +1,30 @@ +# LLGo wrapper of raylib + +## 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): + +- [raylibdemo](_demo/tetris/tetris.go): a basic raylib demo + +### How to run demos + +To run the demos in directory `_demo`: + +```sh +cd # eg. cd _demo/tetris +llgo run . +```