Noah Petherbridge
1a9706c09f
* Rework the Story Mode UI to display level thumbnails. * Responsive UI: defaults to wide screen mode and shows 3 levels horizontally but on narrow/mobile display, shows 2 levels per page in portrait. * Add "Tiny" screenshot size (224x126) to fit the Story Mode UI. * Make the pager buttons bigger and more touchable. * Maximize the game window on startup unless the -w option with a specific window resolution is provided.
14 lines
270 B
Go
14 lines
270 B
Go
package native
|
|
|
|
/*
|
|
Native File Dialogs: Common Code
|
|
*/
|
|
|
|
// FileDialog common variables.
|
|
var (
|
|
// This is set to True when a file dialog driver is available.
|
|
// If false, a fallback uses the developer shell Prompt()
|
|
// to ask for a file name.
|
|
FileDialogsReady bool
|
|
)
|