mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-06 18:27:20 -05:00
9 lines
134 B
Go
9 lines
134 B
Go
package UI
|
|
|
|
// Button defines an object that acts like a button
|
|
type Button interface {
|
|
Widget
|
|
isPressed() bool
|
|
setPressed(bool)
|
|
}
|