(x, y float32, iconSrc *sdl.FRect, image Image, worldSpace bool, onClicked func())
| 218 | } |
| 219 | |
| 220 | func NewIconButtonTintless(x, y float32, iconSrc *sdl.FRect, image Image, worldSpace bool, onClicked func()) *IconButton { |
| 221 | b := NewIconButton(x, y, iconSrc, image, worldSpace, onClicked) |
| 222 | b.Tint = ColorWhite |
| 223 | return b |
| 224 | } |
| 225 | |
| 226 | func (iconButton *IconButton) Update() { |
| 227 |
no test coverage detected