Exemple #1
0
 public SoundSystem.SoundHandle Play(WeakSoundDef weakSoundDef)
 {
     return(default(SoundSystem.SoundHandle));
 }
Exemple #2
0
    public SoundHandle Play(WeakSoundDef weakSoundDef)
    {
        SoundDef def;

        return(m_SoundDefs.TryGetValue(weakSoundDef.guid, out def) ? Play(def) : new SoundHandle(null));
    }