1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-20 10:15:55 -04:00
OpenDiablo2/d2core/d2ui/widget.go

13 lines
230 B
Go
Raw Normal View History

2019-11-10 08:51:02 -05:00
package d2ui
// Widget defines an object that is a UI widget
type Widget interface {
Drawable
GetEnabled() bool
SetEnabled(enabled bool)
2019-10-25 23:41:54 -04:00
SetPressed(pressed bool)
GetPressed() bool
OnActivated(callback func())
Activate()
}