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