MCPcopy Create free account
hub / github.com/SolarLune/masterplan / Dropdown

Struct Dropdown

gui.go:923–937  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

921}
922
923type Dropdown struct {
924 Options []string
925 Open bool
926 ClickableButton *Button
927 Choices []*Button
928 ChosenIndex int
929 Button *Button
930 OnOpen func()
931 OnChoose func(index int)
932 WorldSpace bool
933 Property *Property
934
935 LeftButton *IconButton
936 RightButton *IconButton
937}
938
939func NewDropdown(rect *sdl.FRect, worldSpace bool, onChoose func(index int), property *Property, options ...string) *Dropdown {
940

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected