public static CueInstance FromFmod(FMOD.Studio.CueInstance cue)
        {
            if (cue == null)
            {
                throw new ArgumentNullException("cue");
            }

            return(new CueInstance(cue));
        }
 private CueInstance(FMOD.Studio.CueInstance cue)
     : this()
 {
     FmodCueInstance = cue;
 }