Ejemplo n.º 1
0
 private void RaiseInteractionEvent(LoopPlayer attractorLoop, InteractionTypes interactionType)
 {
     RaiseInteractionEvent(attractorLoop, new InteractedEventArgs()
     {
         InteractionType = interactionType
     });
 }
Ejemplo n.º 2
0
 private void RaiseReadyEvent(LoopPlayer attractorLoop)
 {
     RaiseReadyEvent(attractorLoop, null);
 }
Ejemplo n.º 3
0
 private void RaiseReadyEvent(LoopPlayer attractorLoop, object args)
 {
     Ready?.Invoke(attractorLoop, args);
 }
Ejemplo n.º 4
0
 private void RaiseInteractionEvent(LoopPlayer attractorLoop, InteractedEventArgs args)
 {
     Interacted?.Invoke(attractorLoop, args);
 }