From 3af4c218c0e70167db23a6303d2af30aff37d2fe Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Thu, 20 Aug 2020 23:40:50 -0400 Subject: Removed a bunch of stuff; Changes --- .../Runtime/Events/IMarker.cs | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/IMarker.cs (limited to 'Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/IMarker.cs') diff --git a/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/IMarker.cs b/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/IMarker.cs deleted file mode 100644 index 2595cdf..0000000 --- a/Library/PackageCache/com.unity.timeline@1.2.13/Runtime/Events/IMarker.cs +++ /dev/null @@ -1,31 +0,0 @@ -namespace UnityEngine.Timeline -{ - /// - /// Interface implemented by markers. - /// - /// - /// A marker is a point in time. - /// - /// - public interface IMarker - { - /// - /// The time set for the marker, in seconds. - /// - double time { get; set; } - - /// - /// The track that contains the marker. - /// - TrackAsset parent { get; } - - /// - /// This method is called when the marker is initialized. - /// - /// The track that contains the marker. - /// - /// This method is called after each deserialization of the Timeline Asset. - /// - void Initialize(TrackAsset parent); - } -} -- cgit v1.2.3