| 756 | } |
| 757 | |
| 758 | type Button struct { |
| 759 | Label *Label |
| 760 | BackgroundColor Color |
| 761 | IconSrc *sdl.FRect |
| 762 | LineWidth float32 |
| 763 | Disabled bool |
| 764 | WorldSpace bool |
| 765 | FadeOnInactive bool |
| 766 | OnPressed func() |
| 767 | Highlighter *Highlighter |
| 768 | TintByFontColor bool |
| 769 | } |
| 770 | |
| 771 | func NewButton(labelText string, rect, iconSrcRect *sdl.FRect, worldSpace bool, pressedFunc func()) *Button { |
| 772 |
nothing calls this directly
no outgoing calls
no test coverage detected