mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-23 17:32:02 +01:00
11 lines
85 B
Go
11 lines
85 B
Go
|
package game
|
||
|
|
||
|
import (
|
||
|
_ "../graphics"
|
||
|
)
|
||
|
|
||
|
type Game interface {
|
||
|
Update()
|
||
|
Draw()
|
||
|
}
|