WuhuIslandTesting/Library/PackageCache/com.unity.scriptablebuildpipeline@1.21.5/Editor/Interfaces/IObjectDependencyData.cs

21 lines
662 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using UnityEditor.Build.Content;
//TODO: Remove this when we make this interface public
[assembly: InternalsVisibleTo("Unity.Addressables.Editor", AllInternalsVisible = true)]
namespace UnityEditor.Build.Pipeline.Interfaces
{
/// <summary>
/// Base interface for the dependency data container
/// </summary>
internal interface IObjectDependencyData : IContextObject
{
/// <summary>
/// Dependencies of a given object
/// </summary>
Dictionary<ObjectIdentifier, List<ObjectIdentifier>> ObjectDependencyMap { get; }
}
}