1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-16 20:35:24 +00:00
OpenDiablo2/UI/Button.go
2019-10-25 18:40:27 -04:00

9 lines
134 B
Go

package UI
// Button defines an object that acts like a button
type Button interface {
Widget
isPressed() bool
setPressed(bool)
}