mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
10 lines
105 B
Go
10 lines
105 B
Go
package ui
|
|
|
|
import (
|
|
"github.com/hajimehoshi/go-ebiten"
|
|
)
|
|
|
|
type UI interface {
|
|
Run(game ebiten.Game)
|
|
}
|