IndexedSelection.cs 322 B

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