gojira2d
Simple 2D game library written in Go and based on modern OpenGL
Installation
Install Golang and GLFW:
$ brew install go glfw
Setup your $GOPATH
and clone the
repository into $GOPATH/src
folder:
$ go get -u markov/gojira2d
$ cd $GOPATH/src/markov/gojira2d
$ git remote set-url origin git@github.com:markov/gojira2d.git
Install Golang dependencies:
$ go get \
github.com/go-gl/mathgl/mgl32 \
github.com/go-gl/gl/v4.1-core/gl \
github.com/go-gl/glfw/v3.2/glfw
Try running some examples:
$ go run examples/quad/main.go
...