#pragma once #include namespace UI { struct LogEntry { enum class Level { Info, Warning, Error }; Level level; std::string message; }; }