Exemplo n.º 1
0
 public static bool IsPaused(this Cue cue)
 {
     return(cue.HasState(CueState.Paused));
 }
Exemplo n.º 2
0
 public static bool IsStopped(this Cue cue)
 {
     return(cue.HasState(CueState.Stopped));
 }
Exemplo n.º 3
0
 public static bool IsPlaying(this Cue cue)
 {
     return(cue.HasState(CueState.Playing));
 }