mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
11 lines
85 B
Go
11 lines
85 B
Go
package game
|
|
|
|
import (
|
|
_ "../graphics"
|
|
)
|
|
|
|
type Game interface {
|
|
Update()
|
|
Draw()
|
|
}
|