WoW Model Viewer
Your premiere tool for viewing, equipping and animating World of Warcraft models.
Loading...
Searching...
No Matches
LogPanel.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
7namespace LogPanel
8{
9
12{
13 std::vector<std::string>* logLines = nullptr;
14 bool* logAutoScroll = nullptr;
15 bool* logNeedsReload = nullptr;
16};
17
18void draw(DrawContext& ctx);
19
20} // namespace LogPanel
ImGui panel that displays the application log.
Definition LogPanel.h:8
void draw(DrawContext &ctx)
Definition LogPanel.cpp:27
Per-frame context for the log panel.
Definition LogPanel.h:12
std::vector< std::string > * logLines
Definition LogPanel.h:13