├── .gitignore ├── README.md ├── TODO ├── config.nims ├── data ├── Roboto-Bold.ttf └── Roboto-Regular.ttf ├── examples ├── .gitignore ├── glad │ └── gl.nim ├── nim.cfg ├── paneltest.nim └── test.nim ├── koi.nim ├── koi.nimble ├── koi ├── deps │ └── with.nim ├── glad │ └── gl.nim ├── rect.nim ├── ringbuffer.nim └── utils.nim ├── menutest.nim └── nim.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/TODO -------------------------------------------------------------------------------- /config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/config.nims -------------------------------------------------------------------------------- /data/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/data/Roboto-Bold.ttf -------------------------------------------------------------------------------- /data/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/data/Roboto-Regular.ttf -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/glad/gl.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/examples/glad/gl.nim -------------------------------------------------------------------------------- /examples/nim.cfg: -------------------------------------------------------------------------------- 1 | path=".." 2 | -------------------------------------------------------------------------------- /examples/paneltest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/examples/paneltest.nim -------------------------------------------------------------------------------- /examples/test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/examples/test.nim -------------------------------------------------------------------------------- /koi.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/koi.nim -------------------------------------------------------------------------------- /koi.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/koi.nimble -------------------------------------------------------------------------------- /koi/deps/with.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/koi/deps/with.nim -------------------------------------------------------------------------------- /koi/glad/gl.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/koi/glad/gl.nim -------------------------------------------------------------------------------- /koi/rect.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/koi/rect.nim -------------------------------------------------------------------------------- /koi/ringbuffer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/koi/ringbuffer.nim -------------------------------------------------------------------------------- /koi/utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/koi/utils.nim -------------------------------------------------------------------------------- /menutest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnnovak/koi/HEAD/menutest.nim -------------------------------------------------------------------------------- /nim.cfg: -------------------------------------------------------------------------------- 1 | --gc:orc 2 | --deepcopy:on 3 | --------------------------------------------------------------------------------