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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|