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