#pragma once
#include <string>
#include <XCEngine/Debug/LogLevel.h>
namespace UI {
struct LogEntry {
XCEngine::Debug::LogLevel level;
std::string message;
};
}