2026-03-20 17:08:06 +08:00
|
|
|
#include "Theme.h"
|
2026-03-26 21:18:33 +08:00
|
|
|
#include "UI/BaseTheme.h"
|
2026-03-20 17:08:06 +08:00
|
|
|
#include <imgui.h>
|
|
|
|
|
|
2026-03-24 20:02:38 +08:00
|
|
|
namespace XCEngine {
|
|
|
|
|
namespace Editor {
|
2026-03-20 17:08:06 +08:00
|
|
|
|
|
|
|
|
void ApplyUnityDarkTheme() {
|
2026-03-26 21:18:33 +08:00
|
|
|
UI::ApplyBaseTheme(ImGui::GetStyle());
|
2026-03-20 17:08:06 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-24 20:02:38 +08:00
|
|
|
}
|
2026-03-26 16:43:06 +08:00
|
|
|
}
|