mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-14 23:17:27 +01:00
22 lines
285 B
Go
22 lines
285 B
Go
package blank
|
|
|
|
import (
|
|
"github.com/hajimehoshi/go-ebiten/graphics"
|
|
)
|
|
|
|
type Blank struct {
|
|
}
|
|
|
|
func New() *Blank {
|
|
return &Blank{}
|
|
}
|
|
|
|
func (game *Blank) InitTextures(tf graphics.TextureFactory) {
|
|
}
|
|
|
|
func (game *Blank) Update() {
|
|
}
|
|
|
|
func (game *Blank) Draw(canvas graphics.Canvas) {
|
|
}
|