diff --git a/examples/gui/button/go.mod b/examples/gui/button/go.mod index 927c03d..6dfd959 100644 --- a/examples/gui/button/go.mod +++ b/examples/gui/button/go.mod @@ -1,3 +1,5 @@ module example go 1.19 + +require github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346 // indirect diff --git a/examples/gui/button/main.go b/examples/gui/button/main.go index cdf34a6..c461680 100644 --- a/examples/gui/button/main.go +++ b/examples/gui/button/main.go @@ -4,7 +4,6 @@ import ( "fmt" rl "github.com/Konstantin8105/raylib-go/raylib" - gui "github.com/Konstantin8105/raylib-go/raygui" ) func main() { @@ -19,7 +18,7 @@ func main() { rl.ClearBackground(rl.Black) - button = gui.Button(rl.NewRectangle(50, 150, 100, 40), "Click") + button = rl.Button(rl.NewRectangle(50, 150, 100, 40), "Click") if button { fmt.Println("Clicked on button") } diff --git a/physics/go.mod b/physics/go.mod index 34c7dc1..98ff00f 100644 --- a/physics/go.mod +++ b/physics/go.mod @@ -1,7 +1,7 @@ -module github.com/gen2brain/raylib-go/physics +module github.com/Konstantin8105/raylib-go/physics go 1.16 -replace github.com/gen2brain/raylib-go/raylib => ../raylib +replace github.com/Konstantin8105/raylib-go/raylib => ../raylib -require github.com/gen2brain/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d +require github.com/Konstantin8105/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d diff --git a/rres/cmd/rrem/go.mod b/rres/cmd/rrem/go.mod index 961dfbc..fe6a54f 100644 --- a/rres/cmd/rrem/go.mod +++ b/rres/cmd/rrem/go.mod @@ -2,14 +2,14 @@ module rrem go 1.16 -replace github.com/gen2brain/raylib-go/raylib => ../raylib +replace github.com/Konstantin8105/raylib-go/raylib => ../raylib require ( github.com/blezek/tga v0.0.0-20150626111426-80720cbc1017 github.com/dsnet/compress v0.0.1 // indirect github.com/frankban/quicktest v1.13.0 // indirect github.com/ftrvxmtrx/tga v0.0.0-20150524081124-bd8e8d5be13a // indirect - github.com/gen2brain/raylib-go v0.0.0-20210714145135-ccae99cbf6dd + github.com/Konstantin8105/raylib-go v0.0.0-20210714145135-ccae99cbf6dd github.com/golang/snappy v0.0.4 // indirect github.com/jbuchbinder/gopnm v0.0.0-20150223212718-5176c556b9ce github.com/jfreymuth/oggvorbis v1.0.3 diff --git a/rres/go.mod b/rres/go.mod index 319b72b..e1ea242 100644 --- a/rres/go.mod +++ b/rres/go.mod @@ -7,7 +7,7 @@ replace github.com/Konstantin8105/raylib-go/raylib => ../raylib require ( github.com/dsnet/compress v0.0.1 github.com/frankban/quicktest v1.13.0 // indirect - github.com/gen2brain/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d + github.com/Konstantin8105/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d github.com/golang/snappy v0.0.4 github.com/klauspost/compress v1.13.1 github.com/pierrec/lz4 v2.6.1+incompatible diff --git a/rres/rres.go b/rres/rres.go index 6337dae..452e60a 100644 --- a/rres/rres.go +++ b/rres/rres.go @@ -22,7 +22,7 @@ import ( "golang.org/x/crypto/blowfish" "golang.org/x/crypto/xtea" - "github.com/gen2brain/raylib-go/raylib" + "github.com/Konstantin8105/raylib-go/raylib" ) type Data struct {