18 lines
327 B
C#
18 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO.Enumeration;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AudioPlayer
|
|
{
|
|
abstract class AudioFile
|
|
{
|
|
protected string fileName;
|
|
protected string speicherOrt;
|
|
|
|
public abstract void Play();
|
|
}
|
|
}
|