#pragma once #include "string.h" #include #include struct FilePickerSettings { enum class PickerType { NONE, OPEN, SAVE }; struct FileDescription { mcpe::string ext, desc; }; char filler [0x20]; std::function pickedCallback; std::vector fileDescriptions; int filler3; PickerType type; mcpe::string defaultFileName; mcpe::string pickerTitle; };