14 lines
309 B
C#
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
|