ebiten/game/game.go

11 lines
85 B
Go
Raw Normal View History

2013-06-15 10:07:14 +02:00
package game
import (
_ "../graphics"
)
type Game interface {
Update()
Draw()
}