metaforce/Runtime/ImGuiConsole.hpp

19 lines
293 B
C++
Raw Normal View History

2021-05-25 16:24:05 +00:00
#pragma once
2021-05-26 16:23:44 +00:00
#include <set>
#include <string_view>
#include "RetroTypes.hpp"
2021-05-25 16:24:05 +00:00
namespace metaforce {
2021-05-26 16:23:44 +00:00
void ImGuiStringViewText(std::string_view text);
2021-05-25 16:24:05 +00:00
class ImGuiConsole {
public:
2021-05-26 16:23:44 +00:00
static std::set<TUniqueId> inspectingEntities;
2021-05-25 19:58:18 +00:00
~ImGuiConsole();
2021-05-25 16:24:05 +00:00
void proc();
};
2021-05-25 19:58:18 +00:00
} // namespace metaforce