19 lines
404 B
C++
19 lines
404 B
C++
#pragma once
|
|
|
|
#include "Platform/Win32/EditorWindowTransferRequests.h"
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
class EditorContext;
|
|
class EditorWindow;
|
|
|
|
class EditorWindowFrameDriver final {
|
|
public:
|
|
static EditorWindowFrameTransferRequests DriveFrame(
|
|
EditorWindow& window,
|
|
EditorContext& editorContext,
|
|
bool globalTabDragActive);
|
|
};
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|