2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-05 17:15:52 +00:00
metaforce/Runtime/ImGuiConsole.hpp
2021-05-29 18:45:07 -04:00

19 lines
293 B
C++

#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();
};
} // namespace metaforce