ebiten/example/game/blank/blank.go
2013-06-25 10:27:32 +09:00

35 lines
522 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) 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(input ebiten.InputState) {
}
func (game *Blank) Draw(g graphics.GraphicsContext, offscreen graphics.Texture) {
}