| 1316 | } |
| 1317 | |
| 1318 | type IconButtonGroup struct { |
| 1319 | Buttons []*IconButton |
| 1320 | Rect *sdl.FRect |
| 1321 | Icons []*sdl.FRect |
| 1322 | OnChoose func(index int) |
| 1323 | Property *Property |
| 1324 | ChosenIndex int |
| 1325 | WorldSpace bool |
| 1326 | Spacing float32 |
| 1327 | } |
| 1328 | |
| 1329 | func NewIconButtonGroup(rect *sdl.FRect, worldSpace bool, onChoose func(index int), property *Property, icons ...*sdl.FRect) *IconButtonGroup { |
| 1330 |
nothing calls this directly
no outgoing calls
no test coverage detected