ebiten/ebiten.go
2013-10-20 15:51:26 +09:00

27 lines
359 B
Go

package ebiten
import (
"github.com/hajimehoshi/go-ebiten/graphics"
)
const (
FPS = 60
)
type Game interface {
InitTextures(tf graphics.TextureFactory)
Update(context GameContext)
Draw(context graphics.Context)
}
type GameContext interface {
ScreenWidth() int
ScreenHeight() int
InputState() InputState
}
type InputState struct {
X int
Y int
}