WuhuIslandTesting/Library/PackageCache/com.unity.addressables@1.21.12/Editor/BuildReportVisualizer/IAddressableView.cs
2025-01-07 02:06:59 +01:00

14 lines
309 B
C#

#if UNITY_2022_2_OR_NEWER
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UIElements;
namespace UnityEditor.AddressableAssets.BuildReportVisualizer
{
interface IAddressableView
{
void CreateGUI(VisualElement rootVisualElement);
}
}
#endif