mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-10 20:28:19 -04:00
83adafff82
For now we'll be using APCpp, seems to be good enough for what we need to do for this. might eventually roll my own library if things end up being too weird/complicated to integrate properly.
27 lines
491 B
C++
27 lines
491 B
C++
#include <dusk/imgui/ImGuiArchipelagoDebug.h>
|
|
|
|
#include "imgui.h"
|
|
|
|
#include "Archipelago.h"
|
|
|
|
namespace dusk {
|
|
ImGuiArchipelagoDebug::ImGuiArchipelagoDebug() {
|
|
|
|
}
|
|
|
|
void ImGuiArchipelagoDebug::drawMenuItem() {
|
|
if (ImGui::BeginMenu("Randomizer")) {
|
|
ImGui::Checkbox("Archipelago Window", &m_drawWindow);
|
|
ImGui::EndMenu();
|
|
}
|
|
}
|
|
|
|
void ImGuiArchipelagoDebug::drawWindow() {
|
|
if (!m_drawWindow)
|
|
return;
|
|
|
|
ImGui::Begin("Archipelago Debug");
|
|
|
|
ImGui::End();
|
|
}
|
|
} |