mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-26 02:42:02 +01:00
Create packages for games
This commit is contained in:
parent
04ecb15be2
commit
99f17c418b
@ -1,4 +1,4 @@
|
||||
package game
|
||||
package rotating
|
||||
|
||||
import (
|
||||
"github.com/hajimehoshi/go.ebiten/graphics"
|
||||
@ -14,7 +14,7 @@ type RotatingImage struct {
|
||||
x int
|
||||
}
|
||||
|
||||
func NewRotatingImage() *RotatingImage {
|
||||
func New() *RotatingImage {
|
||||
return &RotatingImage{}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
package game
|
||||
package sprites
|
||||
|
||||
import (
|
||||
"github.com/hajimehoshi/go.ebiten/graphics"
|
||||
@ -63,7 +63,7 @@ type Sprites struct {
|
||||
sprites []*Sprite
|
||||
}
|
||||
|
||||
func NewSprites() *Sprites {
|
||||
func New() *Sprites {
|
||||
return &Sprites{}
|
||||
}
|
||||
|
@ -16,7 +16,8 @@ package main
|
||||
import "C"
|
||||
import (
|
||||
"github.com/hajimehoshi/go.ebiten"
|
||||
"github.com/hajimehoshi/go.ebiten/example/game"
|
||||
"github.com/hajimehoshi/go.ebiten/example/game/rotating"
|
||||
"github.com/hajimehoshi/go.ebiten/example/game/sprites"
|
||||
"github.com/hajimehoshi/go.ebiten/graphics"
|
||||
"os"
|
||||
"runtime"
|
||||
@ -81,9 +82,11 @@ func main() {
|
||||
var gm ebiten.Game
|
||||
switch gameName {
|
||||
case "sprites":
|
||||
gm = game.NewSprites()
|
||||
gm = sprites.New()
|
||||
case "rotating":
|
||||
gm = rotating.New()
|
||||
default:
|
||||
gm = game.NewRotatingImage()
|
||||
gm = rotating.New()
|
||||
}
|
||||
|
||||
screenScale := 2
|
||||
|
Loading…
Reference in New Issue
Block a user