ebiten/example/game/blank/blank.go

23 lines
341 B
Go
Raw Normal View History

2013-06-24 15:27:43 +02:00
package blank
import (
2013-07-04 16:57:53 +02:00
"github.com/hajimehoshi/go.ebiten"
2013-06-24 15:27:43 +02:00
"github.com/hajimehoshi/go.ebiten/graphics"
)
type Blank struct {
}
func New() *Blank {
2013-06-25 03:27:32 +02:00
return &Blank{}
2013-06-24 15:27:43 +02:00
}
func (game *Blank) Init(tf graphics.TextureFactory) {
}
2013-07-05 14:02:17 +02:00
func (game *Blank) Update(context ebiten.GameContext) {
2013-06-24 15:27:43 +02:00
}
2013-07-04 16:57:53 +02:00
func (game *Blank) Draw(context graphics.Context) {
2013-06-24 15:27:43 +02:00
}