コード例 #1
0
ファイル: Program.cs プロジェクト: muradxan/FSDE_2912_az
        static void Main(string[] args)
        {
            var myMusic = new WAW(192, 24.3, 320, "I belive I can fly, I belive I can touch the sky");
            var player  = new OnlinePlayer();

            player.UploadMusic(new MP3Adapter(myMusic));
            player.PlayMusic();
        }
コード例 #2
0
 public MP3Adapter(WAW waw) : base("", "", waw.Size, waw.Bit, waw.Data)
 {
 }