diff --git a/PCK-Studio/Classes/IO/Sounds/SoundIO.cs b/PCK-Studio/Classes/IO/Sounds/SoundIO.cs deleted file mode 100644 index a66f2907..00000000 --- a/PCK-Studio/Classes/IO/Sounds/SoundIO.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.IO; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Newtonsoft.Json; - -namespace PckStudio.Classes.IO.Sounds -{ - public class SoundIO - { - public Dictionary Read(string Filepath) - { - var jObj = (Newtonsoft.Json.Linq.JObject)JsonConvert.DeserializeObject(File.ReadAllText(Filepath)); - var dict = JsonConvert.DeserializeObject>(jObj.ToString()); - - return dict; - } - - public string Serialize(Dictionary input) - { - return JsonConvert.SerializeObject(input, Formatting.Indented); - } - } -} diff --git a/PCK-Studio/Classes/IO/Sounds/Sounds.cs b/PCK-Studio/Classes/IO/Sounds/Sounds.cs deleted file mode 100644 index b5350b69..00000000 --- a/PCK-Studio/Classes/IO/Sounds/Sounds.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace PckStudio.Classes.IO.Sounds -{ - public class SoundInfo - { - public bool replace { get; set; } - public List sounds = new List(); - } - - public class Sound - { - public string name { get; set; } - public string type { get; set; } - public bool stream { get; set; } - } -}