Files
SammelmappeOOP/AudioPlayer/FLACFile.cs
2024-07-25 15:47:46 +02:00

22 lines
521 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AudioPlayer
{
internal class FLACFile : AudioFile
{
public FLACFile(string fileName, string speicherOrt)
{
this.fileName = fileName;
this.speicherOrt = speicherOrt;
}
public override void Play()
{
Console.WriteLine($"{this.fileName} von {this.speicherOrt} vom Typ FLAC wird abgespielt.");
}
}
}