1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/Event/Args/PlayableStoppedEventArgs.cs

18 lines
485 B
C#
Raw Normal View History

2023-09-17 01:22:28 +08:00
using UnityEngine.Playables;
using UnityTest.ZXL;
namespace Mono.Event
{
public class PlayableStoppedEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(PlayableStoppedEventArgs).GetHashCode();
public override int Id => EventId;
public PlayableDirector playableDirector;
public PlayableStoppedEventArgs(PlayableDirector playableDirector)
{
this.playableDirector = playableDirector;
}
}
}