mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
23 lines
341 B
Go
23 lines
341 B
Go
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) {
|
|
}
|