summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.timeline@1.2.13/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs
blob: e943ac15f0f29b02b9e08f6a9316206196a30eee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;

namespace UnityEditor.Timeline
{
    interface IAddDeleteItemMode
    {
        void InsertItemsAtTime(IEnumerable<ItemsPerTrack> itemsGroups, double requestedTime);
        void RemoveItems(IEnumerable<ItemsPerTrack> itemsGroups);
    }
}