14 lines
203 B
Go
14 lines
203 B
Go
package splashmenu
|
|
|
|
import (
|
|
"cosmos/diego/groovy"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
)
|
|
|
|
type MenuOption struct {
|
|
Description string
|
|
SelectionEvent groovy.SceneEvent
|
|
Mapping ebiten.Key
|
|
}
|