15 lines
309 B
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
#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