diff --git a/.gitignore b/.gitignore index 00f6589..aa837a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .fleet -.idea \ No newline at end of file +.idea +*.exe \ No newline at end of file diff --git a/assets/player-gui.png b/assets/player-gui.png index 17c7c61..bb25e86 100644 Binary files a/assets/player-gui.png and b/assets/player-gui.png differ diff --git a/src/boardstate.go b/internal/boardstate.go similarity index 99% rename from src/boardstate.go rename to internal/boardstate.go index af033ab..33baba4 100644 --- a/src/boardstate.go +++ b/internal/boardstate.go @@ -1,4 +1,4 @@ -package src +package goo import . "git.danitheskunk.com/squishy/blooblib" diff --git a/src/game.go b/internal/game.go similarity index 99% rename from src/game.go rename to internal/game.go index 74257d2..1d3be7d 100644 --- a/src/game.go +++ b/internal/game.go @@ -1,4 +1,4 @@ -package src +package goo import ( . "git.danitheskunk.com/squishy/blooblib" diff --git a/src/gobanrenderer.go b/internal/gobanrenderer.go similarity index 99% rename from src/gobanrenderer.go rename to internal/gobanrenderer.go index d963ada..6f6c171 100644 --- a/src/gobanrenderer.go +++ b/internal/gobanrenderer.go @@ -1,4 +1,4 @@ -package src +package goo import . "git.danitheskunk.com/squishy/blooblib" diff --git a/main.go b/main.go index 860adc0..07658a9 100644 --- a/main.go +++ b/main.go @@ -2,9 +2,9 @@ package main import ( run "git.danitheskunk.com/squishy/blooblib/Run" - "git.danitheskunk.com/squishy/goo/src" + "git.danitheskunk.com/squishy/goo/internal" ) func main() { - run.Run(&src.Game{}) + run.Run(&goo.Game{}) }