mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-02 00:03:54 -04:00
27 lines
460 B
C++
27 lines
460 B
C++
#ifndef DUSK_IMGUI_SAVEEDITOR_HPP
|
|
#define DUSK_IMGUI_SAVEEDITOR_HPP
|
|
|
|
#include <aurora/aurora.h>
|
|
#include <string>
|
|
|
|
#include "imgui.h"
|
|
|
|
namespace dusk {
|
|
class ImGuiSaveEditor {
|
|
public:
|
|
ImGuiSaveEditor();
|
|
|
|
void draw(bool& open);
|
|
void drawPlayerStatusTab();
|
|
void drawLocationTab();
|
|
void drawInventoryTab();
|
|
void drawFlagsTab();
|
|
void drawConfigTab();
|
|
|
|
private:
|
|
int m_selectedRegion = 0;
|
|
};
|
|
}
|
|
|
|
#endif // DUSK_IMGUI_SAVEEDITOR_HPP
|