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(); }
public MP3Adapter(WAW waw) : base("", "", waw.Size, waw.Bit, waw.Data) { }