1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-07-04 20:25:23 +00:00
OpenDiablo2/d2core/d2ui/widget.go

13 lines
230 B
Go
Raw Normal View History

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