コード例 #1
0
ファイル: SoundManager.cs プロジェクト: dogmahtagram/Finale
 /// <summary>
 /// Removes a Component from this manager's list of all PointLightComponents.
 /// Overrides IManager's implementation.
 /// </summary>
 /// <param name="c"></param>
 public void UnregisterComponent(SoundComponent_cl c)
 {
     mSoundComponentsList.Remove((SoundComponent_cl)c);
 }
コード例 #2
0
ファイル: SoundManager.cs プロジェクト: dogmahtagram/Finale
 /// <summary>
 /// Adds a Component to this manager's list of all SoundComponents.
 /// Overrides IManager's implementation.
 /// </summary>
 /// <param name="c">The Component to add.</param>
 public void RegisterComponent(SoundComponent_cl c)
 {
     mSoundComponentsList.Add((SoundComponent_cl)c);
 }