19 lines
346 B
C
19 lines
346 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef NOMINMAX
|
||
|
|
#define NOMINMAX
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <windows.h>
|
||
|
|
|
||
|
|
namespace XCEngine::UI::Editor::App {
|
||
|
|
|
||
|
|
RECT BuildEditorFloatingWindowRect(
|
||
|
|
const POINT& screenPoint,
|
||
|
|
LONG preferredWidth = 0,
|
||
|
|
LONG preferredHeight = 0,
|
||
|
|
LONG fallbackWidth = 960,
|
||
|
|
LONG fallbackHeight = 720);
|
||
|
|
|
||
|
|
} // namespace XCEngine::UI::Editor::App
|