ebiten/example/game/blank/blank.go
2013-10-14 11:34:58 +09:00

23 lines
341 B
Go

package blank
import (
"github.com/hajimehoshi/go-ebiten"
"github.com/hajimehoshi/go-ebiten/graphics"
)
type Blank struct {
}
func New() *Blank {
return &Blank{}
}
func (game *Blank) Init(tf graphics.TextureFactory) {
}
func (game *Blank) Update(context ebiten.GameContext) {
}
func (game *Blank) Draw(context graphics.Context) {
}