This commit is contained in:
Konstantin8105 2022-11-23 15:43:57 +03:00
parent ca6c886e87
commit 37f9870e66
17 changed files with 35 additions and 35 deletions

View file

@ -6,6 +6,6 @@ all: packages
packages:
@for pkg in ${PACKAGES}; do \
echo "Building package github.com/Konstantin8105/raylib-go/$$pkg..."; \
${GO} build github.com/Konstantin8105/raylib-go/$$pkg || exit 1; \
echo "Building package github.com/gen2brain/raylib-go/$$pkg..."; \
${GO} build github.com/gen2brain/raylib-go/$$pkg || exit 1; \
done

View file

@ -1,3 +1,3 @@
module github.com/Konstantin8105/raylib-go/easings
module github.com/gen2brain/raylib-go/easings
go 1.16

View file

@ -3,9 +3,9 @@ module example
go 1.19
require (
github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
)
replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib
replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5
replace github.com/gen2brain/raylib-go/raylib => ../../../raylib
replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5

View file

@ -3,8 +3,8 @@ package main
import (
"fmt"
rl "github.com/Konstantin8105/raylib-go/raylib"
gui "github.com/Konstantin8105/raylib-go/raygui"
rl "github.com/gen2brain/raylib-go/raylib"
gui "github.com/gen2brain/raylib-go/raygui"
)
func main() {

View file

@ -3,9 +3,9 @@ module example
go 1.19
require (
github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
)
replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib
replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5
replace github.com/gen2brain/raylib-go/raylib => ../../../raylib
replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5

View file

@ -3,8 +3,8 @@ package main
import (
"fmt"
gui "github.com/Konstantin8105/raylib-go/raygui"
rl "github.com/Konstantin8105/raylib-go/raylib"
gui "github.com/gen2brain/raylib-go/raygui"
rl "github.com/gen2brain/raylib-go/raylib"
)
/*******************************************************************************************

View file

@ -3,9 +3,9 @@ module example
go 1.19
require (
github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
)
replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib
replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5
replace github.com/gen2brain/raylib-go/raylib => ../../../raylib
replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5

View file

@ -3,8 +3,8 @@ package main
import (
"fmt"
gui "github.com/Konstantin8105/raylib-go/raygui"
rl "github.com/Konstantin8105/raylib-go/raylib"
gui "github.com/gen2brain/raylib-go/raygui"
rl "github.com/gen2brain/raylib-go/raylib"
)
/*******************************************************************************************

View file

@ -1,7 +1,7 @@
module github.com/Konstantin8105/raylib-go/physics
module github.com/gen2brain/raylib-go/physics
go 1.16
replace github.com/Konstantin8105/raylib-go/raylib => ../raylib
replace github.com/gen2brain/raylib-go/raylib => ../raylib
require github.com/Konstantin8105/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d
require github.com/gen2brain/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d

View file

@ -8,7 +8,7 @@ import (
"math/rand"
"time"
rl "github.com/Konstantin8105/raylib-go/raylib"
rl "github.com/gen2brain/raylib-go/raylib"
)
// ShapeType type

View file

@ -1,3 +1,3 @@
module github.com/Konstantin8105/raylib-go/raygui3_5
module github.com/gen2brain/raylib-go/raygui3_5
go 1.19

View file

@ -10,7 +10,7 @@ import "C"
import (
"unsafe"
rl "github.com/Konstantin8105/raylib-go/raylib"
rl "github.com/gen2brain/raylib-go/raylib"
)
const (

View file

@ -1,3 +1,3 @@
module github.com/Konstantin8105/raylib-go/raylib
module github.com/gen2brain/raylib-go/raylib
go 1.16

View file

@ -2,14 +2,14 @@ module rrem
go 1.16
replace github.com/Konstantin8105/raylib-go/raylib => ../raylib
replace github.com/gen2brain/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/Konstantin8105/raylib-go v0.0.0-20210714145135-ccae99cbf6dd
github.com/gen2brain/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

View file

@ -29,7 +29,7 @@ import (
"github.com/jteeuwen/go-bindata"
"github.com/moutend/go-wav"
"github.com/Konstantin8105/raylib-go/rres"
"github.com/gen2brain/raylib-go/rres"
)
func init() {

View file

@ -1,13 +1,13 @@
module github.com/Konstantin8105/raylib-go/rres
module github.com/gen2brain/raylib-go/rres
go 1.16
replace github.com/Konstantin8105/raylib-go/raylib => ../raylib
replace github.com/gen2brain/raylib-go/raylib => ../raylib
require (
github.com/dsnet/compress v0.0.1
github.com/frankban/quicktest v1.13.0 // indirect
github.com/Konstantin8105/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d
github.com/gen2brain/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

View file

@ -22,7 +22,7 @@ import (
"golang.org/x/crypto/blowfish"
"golang.org/x/crypto/xtea"
"github.com/Konstantin8105/raylib-go/raylib"
"github.com/gen2brain/raylib-go/raylib"
)
type Data struct {