mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-29 09:40:56 -04:00
19 lines
334 B
C++
19 lines
334 B
C++
#ifndef DUSK_IMGUI_MENUENHANCEMENTS_HPP
|
|
#define DUSK_IMGUI_MENUENHANCEMENTS_HPP
|
|
|
|
#include <aurora/aurora.h>
|
|
#include <pad.h>
|
|
#include <string>
|
|
|
|
#include "imgui.h"
|
|
|
|
namespace dusk {
|
|
class ImGuiMenuEnhancements {
|
|
public:
|
|
ImGuiMenuEnhancements();
|
|
void draw();
|
|
};
|
|
}
|
|
|
|
#endif // DUSK_IMGUI_MENUENHANCEMENTS_HPP
|