#pragma once #include #include #include struct FilePickerSettings { enum class PickerType { NONE, OPEN, SAVE }; struct FileDescription { std::string ext, desc; }; char filler [0x20]; // 20 std::function pickedCallback; // 30 std::vector fileDescriptions; // 3c int filler3; // 40 PickerType type; // 44 std::string defaultFileName; // 48 std::string pickerTitle; // 52 };