Files
XCEngine/editor/src/Core/LogEntry.h
ssdfasd 9fae910854 Editor: 更新编辑器面板和UI控件系统
- 添加新的UI控件系统(Core.h, ScalarControls.h, VectorControls.h, UI.h)
- 更新SceneManager支持场景层级管理
- 优化SelectionManager选择管理
- 改进InspectorPanel/GameViewPanel/HierarchyPanel等面板
- 更新RHI文档说明Vulkan实现计划
2026-03-24 20:02:38 +08:00

17 lines
202 B
C++

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