2013-06-24 15:27:43 +02:00
|
|
|
package blank
|
|
|
|
|
|
|
|
import (
|
2013-10-14 04:34:58 +02:00
|
|
|
"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-11-29 20:24:52 +01:00
|
|
|
func (game *Blank) Update() {
|
2013-06-24 15:27:43 +02:00
|
|
|
}
|
|
|
|
|
2013-11-29 14:06:22 +01:00
|
|
|
func (game *Blank) Draw(canvas graphics.Canvas) {
|
2013-06-24 15:27:43 +02:00
|
|
|
}
|