ebiten/example/game/blank/blank.go

23 lines
347 B
Go
Raw Normal View History

2013-06-24 15:27:43 +02:00
package blank
import (
2013-10-14 04:34:58 +02:00
"github.com/hajimehoshi/go-ebiten"
"github.com/hajimehoshi/go-ebiten/graphics"
2013-06-24 15:27:43 +02:00
)
type Blank struct {
}
func New() *Blank {
2013-06-25 03:27:32 +02:00
return &Blank{}
2013-06-24 15:27:43 +02:00
}
2013-10-20 08:51:26 +02:00
func (game *Blank) InitTextures(tf graphics.TextureFactory) {
2013-06-24 15:27:43 +02:00
}
2013-07-05 14:02:17 +02:00
func (game *Blank) Update(context ebiten.GameContext) {
2013-06-24 15:27:43 +02:00
}
func (game *Blank) Draw(canvas graphics.Canvas) {
2013-06-24 15:27:43 +02:00
}