1using UnityEngine; 2using System; 3using System.Collections; 4using System.Collections.Generic; 5 6namespace UnityEditor.U2D.Common.Path 7{ 8 [Serializable] 9 internal class IndexedSelection : SerializableSelection<int> 10 { 11 protected override int GetInvalidElement() { return -1; } 12 } 13}