Beispiel #1
0
 /// <summary>
 /// サウンドプレイヤーを作成します。
 /// </summary>
 public static ISoundPlayer <T> Create <T>(this ISoundProvider <T> self, SoundPlayerConfig config = null)
 {
     return(SoundControl.CreatePlayer(self, config));
 }
Beispiel #2
0
 /// <summary>
 /// ミュージックプレイヤーを作成します。
 /// </summary>
 public static IMusicPlayer Create(this IMusicProvider self, MusicPlayerConfig config = null)
 {
     return(SoundControl.CreatePlayer(self, config));
 }