IAddDeleteItemMode.cs 275 B

12345678910
  1. using System.Collections.Generic;
  2. namespace UnityEditor.Timeline
  3. {
  4. interface IAddDeleteItemMode
  5. {
  6. void InsertItemsAtTime(IEnumerable<ItemsPerTrack> itemsGroups, double requestedTime);
  7. void RemoveItems(IEnumerable<ItemsPerTrack> itemsGroups);
  8. }
  9. }