ebiten/example/game/blank/blank.go
2013-11-30 04:24:52 +09:00

22 lines
285 B
Go

package blank
import (
"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() {
}
func (game *Blank) Draw(canvas graphics.Canvas) {
}