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