This repository has been archived on 2026-04-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GlobalGameJame/Library/PackageCache/com.unity.timeline@1.2.10/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs
T
2020-01-31 16:10:04 +01:00

11 lines
275 B
C#

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