Files
UnrealEngine/Engine/Source/Developer/DesktopPlatform/Private/DesktopPlatformPrivate.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
476 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
// IWYU pragma: begin_exports
#if PLATFORM_WINDOWS
#include "Windows/DesktopPlatformWindows.h"
#elif PLATFORM_MAC
#include "Mac/DesktopPlatformMac.h"
#elif PLATFORM_LINUX
#include "Linux/DesktopPlatformLinux.h"
#else
#include "DesktopPlatformStub.h"
#endif
#include "Null/DesktopPlatformNull.h"
// IWYU pragma: end_exports
DECLARE_LOG_CATEGORY_EXTERN(LogDesktopPlatform, Log, All);