2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 12:27:43 +00:00

Add connections view

This commit is contained in:
2021-05-26 12:23:44 -04:00
parent 4f48a442de
commit 7e9408868f
3 changed files with 280 additions and 21 deletions

View File

@@ -1,8 +1,17 @@
#pragma once
#include <set>
#include <string_view>
#include "RetroTypes.hpp"
namespace metaforce {
void ImGuiStringViewText(std::string_view text);
class ImGuiConsole {
public:
static std::set<TUniqueId> inspectingEntities;
~ImGuiConsole();
void proc();
};