From faeb03373ddecf9a54af5e2e2984ea5739960dca Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 1 Sep 2024 12:40:34 +0900 Subject: [PATCH] examples: remove README --- examples/README.md | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 examples/README.md diff --git a/examples/README.md b/examples/README.md deleted file mode 100644 index 494ae5b1c..000000000 --- a/examples/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# How to execute the examples - -## Desktops - -```sh -go run github.com/hajimehoshi/ebiten/v2/examples/rotate@latest -``` - -## Android - -Install [gomobile](https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile) first. - -```sh -gomobile install github.com/hajimehoshi/ebiten/v2/examples/rotate@latest -``` - -## iOS - -```sh -gomobile build -target=ios -work github.com/hajimehoshi/ebiten/v2/examples/rotate@latest -``` - -Then, open the `WORK` directory, open `main.xcodeproj`, add signing, and run the project.