From 6a84f046b49ca89650ea5ffbd425a6b7b9ed399d Mon Sep 17 00:00:00 2001 From: feurig Date: Sun, 5 Dec 2021 21:02:30 -0800 Subject: This is my modern world --- README.md | 8 ++++---- go.mod | 2 +- main.go | 2 +- modernworld/arena.go | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6d01b15..6f5e253 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A Space modernworld inspired game written in Go. Built with [Termloop](https://g ## Installation ``` -go install github.com/afagundes/go-modernworld@latest +go install github.com/feurig/go-modernworld@latest $GOPATH/bin/go-modernworld ``` @@ -12,8 +12,8 @@ Use the arrow keys to move the hero spaceship and space bar to shoot. Press back # Screenshots -![Image of title screen](https://github.com/afagundes/go-modernworld/blob/main/images/title_screen.png) +![Image of title screen](https://github.com/feurig/go-modernworld/blob/main/images/title_screen.png) -![Image of game screen](https://github.com/afagundes/go-modernworld/blob/main/images/running_game_screen.png) +![Image of game screen](https://github.com/feurig/go-modernworld/blob/main/images/running_game_screen.png) -![Image of game over screen](https://github.com/afagundes/go-modernworld/blob/main/images/game_over_screen.png) +![Image of game over screen](https://github.com/feurig/go-modernworld/blob/main/images/game_over_screen.png) diff --git a/go.mod b/go.mod index d806833..8634194 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/afagundes/go-modernworld +module github.com/feurig/go-modernworld go 1.16 diff --git a/main.go b/main.go index a7e492e..5db44c4 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/afagundes/go-modernworld/modernworld" +import "github.com/feurig/go-modernworld/modernworld" func main() { modernworld.NewGame().Start() diff --git a/modernworld/arena.go b/modernworld/arena.go index f3c9252..e26fc0f 100644 --- a/modernworld/arena.go +++ b/modernworld/arena.go @@ -2,7 +2,7 @@ package modernworld import ( tl "github.com/JoelOtter/termloop" - "github.com/afagundes/go-modernworld/modernworld/utils" + "github.com/feurig/go-modernworld/modernworld/utils" ) type Arena struct { -- cgit v1.2.3