GUI: options to import/export user presets

This commit is contained in:
tildearrow 2024-04-25 12:55:59 -05:00
parent e7b0130e5c
commit 0ad7863d78
4 changed files with 114 additions and 11 deletions

View file

@ -5189,6 +5189,14 @@ bool FurnaceGUI::exportLayout(String path) {
return true;
}
bool FurnaceGUI::importConfig(String path) {
return false;
}
bool FurnaceGUI::exportConfig(String path) {
return false;
}
void FurnaceGUI::resetColors() {
for (int i=0; i<GUI_COLOR_MAX; i++) {
uiColors[i]=ImGui::ColorConvertU32ToFloat4(guiColors[i].defaultColor);