EM_Task/UnrealEd/Private/Cooker/MPCookTrace.h
Boshuang Zhao 5144a49c9b add
2026-02-13 16:18:33 +08:00

19 lines
434 B
C++

#pragma once
#include "CoreMinimal.h"
DECLARE_LOG_CATEGORY_EXTERN(LogMPCookTrace, Log, All);
namespace UE
{
namespace Cook
{
class CookTrace
{
public:
// Helper function to check if a package is in our trace list.
// We check by leaf name to handle cases where the full path might vary (e.g., _C suffixes for Blueprints).
static bool IsTargetPackage(const FName& PackageName);
};
} // namespace Cook
} // namespace UE