metaforce/Runtime/ImGuiConsole.hpp

19 lines
293 B
C++
Raw Normal View History

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