renaming
This commit is contained in:
parent
ca6c886e87
commit
37f9870e66
17 changed files with 35 additions and 35 deletions
4
Makefile
4
Makefile
|
@ -6,6 +6,6 @@ all: packages
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
@for pkg in ${PACKAGES}; do \
|
@for pkg in ${PACKAGES}; do \
|
||||||
echo "Building package github.com/Konstantin8105/raylib-go/$$pkg..."; \
|
echo "Building package github.com/gen2brain/raylib-go/$$pkg..."; \
|
||||||
${GO} build github.com/Konstantin8105/raylib-go/$$pkg || exit 1; \
|
${GO} build github.com/gen2brain/raylib-go/$$pkg || exit 1; \
|
||||||
done
|
done
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module github.com/Konstantin8105/raylib-go/easings
|
module github.com/gen2brain/raylib-go/easings
|
||||||
|
|
||||||
go 1.16
|
go 1.16
|
||||||
|
|
|
@ -3,9 +3,9 @@ module example
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
|
github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
|
||||||
github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
|
github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib
|
replace github.com/gen2brain/raylib-go/raylib => ../../../raylib
|
||||||
replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5
|
replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5
|
||||||
|
|
|
@ -3,8 +3,8 @@ package main
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
rl "github.com/Konstantin8105/raylib-go/raylib"
|
rl "github.com/gen2brain/raylib-go/raylib"
|
||||||
gui "github.com/Konstantin8105/raylib-go/raygui"
|
gui "github.com/gen2brain/raylib-go/raygui"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
@ -3,9 +3,9 @@ module example
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
|
github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
|
||||||
github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
|
github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib
|
replace github.com/gen2brain/raylib-go/raylib => ../../../raylib
|
||||||
replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5
|
replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5
|
||||||
|
|
|
@ -3,8 +3,8 @@ package main
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
gui "github.com/Konstantin8105/raylib-go/raygui"
|
gui "github.com/gen2brain/raylib-go/raygui"
|
||||||
rl "github.com/Konstantin8105/raylib-go/raylib"
|
rl "github.com/gen2brain/raylib-go/raylib"
|
||||||
)
|
)
|
||||||
|
|
||||||
/*******************************************************************************************
|
/*******************************************************************************************
|
||||||
|
|
|
@ -3,9 +3,9 @@ module example
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
|
github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346
|
||||||
github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
|
github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib
|
replace github.com/gen2brain/raylib-go/raylib => ../../../raylib
|
||||||
replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5
|
replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5
|
||||||
|
|
|
@ -3,8 +3,8 @@ package main
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
gui "github.com/Konstantin8105/raylib-go/raygui"
|
gui "github.com/gen2brain/raylib-go/raygui"
|
||||||
rl "github.com/Konstantin8105/raylib-go/raylib"
|
rl "github.com/gen2brain/raylib-go/raylib"
|
||||||
)
|
)
|
||||||
|
|
||||||
/*******************************************************************************************
|
/*******************************************************************************************
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
module github.com/Konstantin8105/raylib-go/physics
|
module github.com/gen2brain/raylib-go/physics
|
||||||
|
|
||||||
go 1.16
|
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
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
rl "github.com/Konstantin8105/raylib-go/raylib"
|
rl "github.com/gen2brain/raylib-go/raylib"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ShapeType type
|
// ShapeType type
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module github.com/Konstantin8105/raylib-go/raygui3_5
|
module github.com/gen2brain/raylib-go/raygui3_5
|
||||||
|
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
|
@ -10,7 +10,7 @@ import "C"
|
||||||
import (
|
import (
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
rl "github.com/Konstantin8105/raylib-go/raylib"
|
rl "github.com/gen2brain/raylib-go/raylib"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module github.com/Konstantin8105/raylib-go/raylib
|
module github.com/gen2brain/raylib-go/raylib
|
||||||
|
|
||||||
go 1.16
|
go 1.16
|
||||||
|
|
|
@ -2,14 +2,14 @@ module rrem
|
||||||
|
|
||||||
go 1.16
|
go 1.16
|
||||||
|
|
||||||
replace github.com/Konstantin8105/raylib-go/raylib => ../raylib
|
replace github.com/gen2brain/raylib-go/raylib => ../raylib
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/blezek/tga v0.0.0-20150626111426-80720cbc1017
|
github.com/blezek/tga v0.0.0-20150626111426-80720cbc1017
|
||||||
github.com/dsnet/compress v0.0.1 // indirect
|
github.com/dsnet/compress v0.0.1 // indirect
|
||||||
github.com/frankban/quicktest v1.13.0 // indirect
|
github.com/frankban/quicktest v1.13.0 // indirect
|
||||||
github.com/ftrvxmtrx/tga v0.0.0-20150524081124-bd8e8d5be13a // 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/golang/snappy v0.0.4 // indirect
|
||||||
github.com/jbuchbinder/gopnm v0.0.0-20150223212718-5176c556b9ce
|
github.com/jbuchbinder/gopnm v0.0.0-20150223212718-5176c556b9ce
|
||||||
github.com/jfreymuth/oggvorbis v1.0.3
|
github.com/jfreymuth/oggvorbis v1.0.3
|
||||||
|
|
|
@ -29,7 +29,7 @@ import (
|
||||||
"github.com/jteeuwen/go-bindata"
|
"github.com/jteeuwen/go-bindata"
|
||||||
"github.com/moutend/go-wav"
|
"github.com/moutend/go-wav"
|
||||||
|
|
||||||
"github.com/Konstantin8105/raylib-go/rres"
|
"github.com/gen2brain/raylib-go/rres"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
module github.com/Konstantin8105/raylib-go/rres
|
module github.com/gen2brain/raylib-go/rres
|
||||||
|
|
||||||
go 1.16
|
go 1.16
|
||||||
|
|
||||||
replace github.com/Konstantin8105/raylib-go/raylib => ../raylib
|
replace github.com/gen2brain/raylib-go/raylib => ../raylib
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/dsnet/compress v0.0.1
|
github.com/dsnet/compress v0.0.1
|
||||||
github.com/frankban/quicktest v1.13.0 // indirect
|
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/golang/snappy v0.0.4
|
||||||
github.com/klauspost/compress v1.13.1
|
github.com/klauspost/compress v1.13.1
|
||||||
github.com/pierrec/lz4 v2.6.1+incompatible
|
github.com/pierrec/lz4 v2.6.1+incompatible
|
||||||
|
|
|
@ -22,7 +22,7 @@ import (
|
||||||
"golang.org/x/crypto/blowfish"
|
"golang.org/x/crypto/blowfish"
|
||||||
"golang.org/x/crypto/xtea"
|
"golang.org/x/crypto/xtea"
|
||||||
|
|
||||||
"github.com/Konstantin8105/raylib-go/raylib"
|
"github.com/gen2brain/raylib-go/raylib"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Data struct {
|
type Data struct {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue