OpenDiablo2/UI/Widget.go

13 lines
200 B
Go
Raw Normal View History

package UI
import (
"github.com/essial/OpenDiablo2/Common"
)
// Widget defines an object that is a UI widget
type Widget interface {
Common.Drawable
GetEnabled() bool
SetEnabled(enabled bool)
}