mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-13 12:06:31 -05:00
13 lines
192 B
Go
13 lines
192 B
Go
|
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(bool)
|
||
|
}
|