├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd └── main.go ├── docs └── static │ └── screen_capture.gif ├── dot.go ├── drawable.go ├── ground.go ├── mario.go ├── sprite.go └── world.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM centos:7 2 | MAINTAINER "demouth" 3 | ENV TERM xterm-256color 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/README.md -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/cmd/main.go -------------------------------------------------------------------------------- /docs/static/screen_capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/docs/static/screen_capture.gif -------------------------------------------------------------------------------- /dot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/dot.go -------------------------------------------------------------------------------- /drawable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/drawable.go -------------------------------------------------------------------------------- /ground.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/ground.go -------------------------------------------------------------------------------- /mario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/mario.go -------------------------------------------------------------------------------- /sprite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/sprite.go -------------------------------------------------------------------------------- /world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demouth/mario-go/HEAD/world.go --------------------------------------------------------------------------------