19 lines
434 B
C++
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
|