13 lines
161 B
C
13 lines
161 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace UI {
|
||
|
|
|
||
|
|
struct LogEntry {
|
||
|
|
enum class Level { Info, Warning, Error };
|
||
|
|
Level level;
|
||
|
|
std::string message;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|