GlobalGameJame/Library/PackageCache/com.unity.timeline@1.2.10/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs

11 lines
275 B
C#
Raw Normal View History

2020-01-31 15:10:04 +00:00
using System.Collections.Generic;
namespace UnityEditor.Timeline
{
interface IAddDeleteItemMode
{
void InsertItemsAtTime(IEnumerable<ItemsPerTrack> itemsGroups, double requestedTime);
void RemoveItems(IEnumerable<ItemsPerTrack> itemsGroups);
}
}