Files
UnrealEngine/Engine/Source/Editor/AssetDefinition/Public/IAssetSystemInfoProvider.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
409 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Containers/Array.h"
struct FAssetDisplayInfo;
class IAssetSystemInfoProvider
{
public:
virtual ~IAssetSystemInfoProvider() = default;
/** Populate the OutAssetDisplayInfo with the information of the Asset like the Path/Size etc... */
virtual void PopulateAssetInfo(TArray<FAssetDisplayInfo>& OutAssetDisplayInfo) const = 0;
};