You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
336 B

package kibodo
import (
"github.com/hajimehoshi/ebiten/v2"
)
type Key struct {
LowerLabel string
UpperLabel string
LowerInput *Input
UpperInput *Input
x, y int
w, h int
}
type Input struct {
Rune rune
Key ebiten.Key
}
func (i *Input) String() string {
if i.Rune > 0 {
return string(i.Rune)
}
return i.Key.String()
}