コード例 #1
0
ファイル: AudioCore.cs プロジェクト: michaelbehner96/Xyzzxyz
 public AudioControls(AudioCore core)
 {
     this.Core = core;
 }
コード例 #2
0
 public MusicPlayer()
 {
     Core = new AudioCore();
     Core.AudioEnd += delegate { Play(); };
 }