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" "errors"
"log" "log"
"drjosh.dev/gurgle/geom" "github.com/DrJosh9000/ichigo/geom"
) )
// Ensure Actor satisfies interfaces. // Ensure Actor satisfies interfaces.

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -3,8 +3,8 @@ package example
import ( import (
"image" "image"
"drjosh.dev/gurgle/engine" "github.com/DrJosh9000/ichigo/engine"
"drjosh.dev/gurgle/geom" "github.com/DrJosh9000/ichigo/geom"
) )
// Level1 creates the level_1 scene. // 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 go 1.16