添加ui_editor编辑器模块初始代码
This commit is contained in:
13
ui_editor/src/Core/LogEntry.h
Normal file
13
ui_editor/src/Core/LogEntry.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace UI {
|
||||
|
||||
struct LogEntry {
|
||||
enum class Level { Info, Warning, Error };
|
||||
Level level;
|
||||
std::string message;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user