ebiten/example/game/blank/blank.go
2013-10-20 15:51:26 +09:00

23 lines
349 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) InitTextures(tf graphics.TextureFactory) {
}
func (game *Blank) Update(context ebiten.GameContext) {
}
func (game *Blank) Draw(context graphics.Context) {
}