This repository has been archived on 2024-01-17. You can view files and clone it, but cannot push or open issues or pull requests.
kibodo/key.go

28 lines
336 B
Go
Raw Normal View History

2021-08-30 19:48:39 +00:00
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()
}