summaryrefslogtreecommitdiff
path: root/DSACore/Audio/Sound.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Audio/Sound.cs')
-rw-r--r--DSACore/Audio/Sound.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/DSACore/Audio/Sound.cs b/DSACore/Audio/Sound.cs
deleted file mode 100644
index d259850..0000000
--- a/DSACore/Audio/Sound.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace DSACore.Audio
-{
- public class Sound
- {
- public Sound(string name, string url, int volume)
- {
- this.Name = name;
- this.Url = url;
- this.Volume = volume;
- }
-
- public string Name { get; }
-
- public string Url { get; }
-
- public int Volume { get; }
- }
-}