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