ebiten/example/game/blank/blank.go
Hajime Hoshi fe11e23286 Add Blank
2013-06-24 22:27:51 +09:00

36 lines
466 B
Go

package blank
import (
"github.com/hajimehoshi/go.ebiten/graphics"
)
type Blank struct {
}
func New() *Blank {
return &Blank{}
}
func (game *Blank) ScreenWidth() int {
return 256
}
func (game *Blank) ScreenHeight() int {
return 240
}
func (game *Blank) Fps() int {
return 60
}
func (game *Blank) Init(tf graphics.TextureFactory) {
}
func (game *Blank) Update() {
}
func (game *Blank) Draw(g graphics.GraphicsContext, offscreen graphics.Texture) {
}