This commit is contained in:
Andrey Parhomenko 2024-01-04 17:05:51 +03:00
parent 2821ffd442
commit 3f441641e4
6 changed files with 14 additions and 15 deletions

View file

@ -1,6 +1,6 @@
package main package main
import "github.com/di4f/gg" import "github.com/vultras/gg"
import ( import (
"strings" "strings"

View file

@ -1,7 +1,7 @@
package main package main
import ( import (
"github.com/di4f/gg" "github.com/vultras/gg"
"github.com/hajimehoshi/ebiten/v2/examples/resources/images" "github.com/hajimehoshi/ebiten/v2/examples/resources/images"
"bytes" "bytes"
"log" "log"

View file

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
) )
import "github.com/di4f/gg" import "github.com/vultras/gg"
type Player struct { type Player struct {
gg.Sprite gg.Sprite
@ -144,4 +144,3 @@ func (p *Player) Event(c *gg.Context) {
} }
} }

View file

@ -1,6 +1,6 @@
package main package main
import "github.com/di4f/gg" import "github.com/vultras/gg"
type Rect struct { type Rect struct {
gg.DrawableRectangle gg.DrawableRectangle

View file

@ -1,6 +1,6 @@
package main package main
import "github.com/di4f/gg" import "github.com/vultras/gg"
import "fmt" import "fmt"
type Tri struct { type Tri struct {

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/di4f/gg module github.com/vultras/gg
go 1.21 go 1.21