Files
ordoor/internal/ui/static_element.go

16 lines
292 B
Go
Raw Normal View History

2020-03-22 23:29:40 +00:00
package ui
import (
"image"
"github.com/hajimehoshi/ebiten"
)
// A static element is not a widget; it merely displays some pixels and may
// optionally have a tooltip for display within bounds
type staticElement struct {
bounds image.Rectangle
image *ebiten.Image
tooltip string
}