16 lines
292 B
Go
16 lines
292 B
Go
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
|
|
}
|