11 lines
354 B
C++
11 lines
354 B
C++
#pragma once
|
|
|
|
namespace XCEngine::UI::Editor::App::EditorWindowSupport {
|
|
|
|
inline constexpr unsigned int kDefaultDpi = 96u;
|
|
inline constexpr float kBaseDpiScale = 96.0f;
|
|
inline constexpr float kBorderlessTitleBarHeightDips = 28.0f;
|
|
inline constexpr float kBorderlessTitleBarFontSize = 12.0f;
|
|
|
|
} // namespace XCEngine::UI::Editor::App::EditorWindowSupport
|