1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-07 00:10:43 +00:00
OpenDiablo2/ui/Widget.go
2019-11-06 22:12:15 -05:00

17 lines
292 B
Go

package ui
import (
"github.com/OpenDiablo2/OpenDiablo2/common"
)
// Widget defines an object that is a UI widget
type Widget interface {
common.Drawable
GetEnabled() bool
SetEnabled(enabled bool)
SetPressed(pressed bool)
GetPressed() bool
OnActivated(callback func())
Activate()
}