flappy-gopher
flappy-gopher copied to clipboard
A game made using Go that mimics the flappy-bird game with Gopher style
When the game is running in a large window, the speed and the jump are affected because they have fixed values. We need to use relative/proportional values to keep the...
Today the current build configuration is generating untagged releases. We need to create a way to control versions and to tag these versions Here is an example of a build...
``` bash $ make build-osx rm -Rf ./builds/osx CGO_ENABLED=1 CC="gcc" GOOS="darwin" GOARCH="amd64" go build -o ./builds/osx/flappy-gopher -tags static -ldflags "-s -w" ./cmd/flappy-gopher/main.go # github.com/veandco/go-sdl2/sdl /usr/bin/ld: -f may not be used...
Current the windows release zip file contains a confusing structure.  We should get rid of the `builds` and `windows` folders. Would be good to have something simpler and with...
Would be good to have a scoreboard at the end of each match, sorted by the highest score to the lowest, showing the top 10 scores. It can be stored...
