Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Wad = Picker{ Filters: []string{"*.wad"}, Msg: "Wad files", Path: latestPath, } Pk3 = Picker{ Filters: []string{"*.pk3", "*.wad"}, Msg: "pk3 or wad files", Path: latestPath, } Image = Picker{ Filters: []string{"*.png", "*.gif", "*.ico", "*.jpg", "*.webp"}, Msg: "Images", Path: latestPath, } Executable = func() Picker { p := Picker{ Msg: "Executable files", Path: latestPath, } if v.IsWindows { p.Filters = []string{"*.exe"} } else { p.Filters = []string{"*"} } return p }() )
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.