Files
Flight-Deck/Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/Views/IViewStateCollection.cs
2026-02-18 12:00:34 +00:00

13 lines
223 B
C#

#if UNITY_EDITOR
using System.Collections;
namespace UnityEngine.InputSystem.Editor
{
internal interface IViewStateCollection : IEnumerable
{
bool SequenceEqual(IViewStateCollection other);
}
}
#endif