├── .gitignore ├── .replit ├── .travis.yml ├── HIGHSCORES.md ├── LICENSE ├── README.md ├── docs ├── gameoptions.md └── instructions.md ├── game ├── arena.go ├── food.go ├── game.go ├── keyinput.go ├── snake.go └── types.go ├── images ├── game-gameoptions.png ├── game-gameoverscreen.png ├── game-gamescreen.png ├── game-titlescreen.png ├── game-v1.gif ├── game-v2.gif ├── gameoptions.gif ├── itch-badge.png ├── savehighscore.gif └── snake-logo.png ├── run.go └── util ├── gameover-logo.txt └── titlescreen-logo.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignored a few unnecessary files 2 | 3 | *.mod 4 | *.sum -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/.replit -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/.travis.yml -------------------------------------------------------------------------------- /HIGHSCORES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/HIGHSCORES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/README.md -------------------------------------------------------------------------------- /docs/gameoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/docs/gameoptions.md -------------------------------------------------------------------------------- /docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/docs/instructions.md -------------------------------------------------------------------------------- /game/arena.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/game/arena.go -------------------------------------------------------------------------------- /game/food.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/game/food.go -------------------------------------------------------------------------------- /game/game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/game/game.go -------------------------------------------------------------------------------- /game/keyinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/game/keyinput.go -------------------------------------------------------------------------------- /game/snake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/game/snake.go -------------------------------------------------------------------------------- /game/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/game/types.go -------------------------------------------------------------------------------- /images/game-gameoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/game-gameoptions.png -------------------------------------------------------------------------------- /images/game-gameoverscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/game-gameoverscreen.png -------------------------------------------------------------------------------- /images/game-gamescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/game-gamescreen.png -------------------------------------------------------------------------------- /images/game-titlescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/game-titlescreen.png -------------------------------------------------------------------------------- /images/game-v1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/game-v1.gif -------------------------------------------------------------------------------- /images/game-v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/game-v2.gif -------------------------------------------------------------------------------- /images/gameoptions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/gameoptions.gif -------------------------------------------------------------------------------- /images/itch-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/itch-badge.png -------------------------------------------------------------------------------- /images/savehighscore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/savehighscore.gif -------------------------------------------------------------------------------- /images/snake-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/images/snake-logo.png -------------------------------------------------------------------------------- /run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/run.go -------------------------------------------------------------------------------- /util/gameover-logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/util/gameover-logo.txt -------------------------------------------------------------------------------- /util/titlescreen-logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tristangoossens/snake-go/HEAD/util/titlescreen-logo.txt --------------------------------------------------------------------------------