Beispiel #1
0
 public                                     CueInstance this[int index]
 {
     get
     {
         FMOD.Studio.CueInstance cue;
         _instance.getCueByIndex(index, out cue).Check();
         return(CueInstance.FromFmod(cue));
     }
 }
Beispiel #2
0
 public                                     CueInstance this[string name]
 {
     get
     {
         FMOD.Studio.CueInstance cue;
         _instance.getCue(name, out cue).Check();
         return(CueInstance.FromFmod(cue));
     }
 }