moved main package to internal and renamed it
This commit is contained in:
parent
9e24d555a1
commit
9a0b796cb5
|
@ -1,2 +1,3 @@
|
||||||
.fleet
|
.fleet
|
||||||
.idea
|
.idea
|
||||||
|
*.exe
|
Binary file not shown.
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
@ -1,4 +1,4 @@
|
||||||
package src
|
package goo
|
||||||
|
|
||||||
import . "git.danitheskunk.com/squishy/blooblib"
|
import . "git.danitheskunk.com/squishy/blooblib"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package src
|
package goo
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "git.danitheskunk.com/squishy/blooblib"
|
. "git.danitheskunk.com/squishy/blooblib"
|
|
@ -1,4 +1,4 @@
|
||||||
package src
|
package goo
|
||||||
|
|
||||||
import . "git.danitheskunk.com/squishy/blooblib"
|
import . "git.danitheskunk.com/squishy/blooblib"
|
||||||
|
|
4
main.go
4
main.go
|
@ -2,9 +2,9 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
run "git.danitheskunk.com/squishy/blooblib/Run"
|
run "git.danitheskunk.com/squishy/blooblib/Run"
|
||||||
"git.danitheskunk.com/squishy/goo/src"
|
"git.danitheskunk.com/squishy/goo/internal"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
run.Run(&src.Game{})
|
run.Run(&goo.Game{})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue