package blank import ( "github.com/hajimehoshi/go-ebiten" "github.com/hajimehoshi/go-ebiten/graphics" ) type Blank struct { } func New() *Blank { return &Blank{} } func (game *Blank) Init(tf graphics.TextureFactory) { } func (game *Blank) Update(context ebiten.GameContext) { } func (game *Blank) Draw(context graphics.Context) { }