Partially implemented song compression #14

This commit is contained in:
amazing-username
2019-04-08 22:29:52 -04:00
parent 2911b9739b
commit 2d26d6ecdc
6 changed files with 128 additions and 67 deletions
+2 -8
View File
@@ -20,14 +20,8 @@ namespace Icarus.Controllers.Managers
#region Properties
public string SongDirectory
{
get
{
return _songDirectory;
}
set
{
_songDirectory = value;
}
get => _songDirectory;
set => _songDirectory = value;
}
#endregion