rename to ichigo

This commit is contained in:
Josh Deprez 2021-10-01 15:17:19 +10:00
parent 0d980a71ce
commit 02cd988991
20 changed files with 26 additions and 26 deletions

View file

@ -1,3 +1,3 @@
# gurgle
# ichigo 🍓
Game development in progress.
Game engine development in progress.

View file

@ -5,7 +5,7 @@ import (
"errors"
"log"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
)
// Ensure Actor satisfies interfaces.

View file

@ -4,7 +4,7 @@ import (
"encoding/gob"
"fmt"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -4,7 +4,7 @@ import (
"encoding/gob"
"image"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -8,7 +8,7 @@ import (
"math"
"strings"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -3,7 +3,7 @@ package engine
import (
"testing"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/google/go-cmp/cmp"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -11,7 +11,7 @@ import (
"sync"
"time"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -5,7 +5,7 @@ import (
"io/fs"
"reflect"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -4,7 +4,7 @@ import (
"encoding/gob"
"fmt"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -5,7 +5,7 @@ import (
"fmt"
"image"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -3,7 +3,7 @@ package engine
import (
"image"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -3,7 +3,7 @@ package engine
import (
"encoding/gob"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
)
var _ Collider = SolidRect{}

View file

@ -5,7 +5,7 @@ import (
"fmt"
"image"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -6,7 +6,7 @@ import (
"image"
"io/fs"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -3,7 +3,7 @@ package engine
import (
"image"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -15,9 +15,9 @@ import (
"runtime"
"runtime/pprof"
"drjosh.dev/gurgle/engine"
"drjosh.dev/gurgle/example"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/engine"
"github.com/DrJosh9000/ichigo/example"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -5,8 +5,8 @@ import (
"fmt"
"math"
"drjosh.dev/gurgle/engine"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/engine"
"github.com/DrJosh9000/ichigo/geom"
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/inpututil"
)

View file

@ -5,8 +5,8 @@ import (
"image"
"math/rand"
"drjosh.dev/gurgle/engine"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/engine"
"github.com/DrJosh9000/ichigo/geom"
)
var _ interface {

View file

@ -3,8 +3,8 @@ package example
import (
"image"
"drjosh.dev/gurgle/engine"
"drjosh.dev/gurgle/geom"
"github.com/DrJosh9000/ichigo/engine"
"github.com/DrJosh9000/ichigo/geom"
)
// Level1 creates the level_1 scene.

2
go.mod
View file

@ -1,4 +1,4 @@
module drjosh.dev/gurgle
module github.com/DrJosh9000/ichigo
go 1.16