Implemented WMVCore mod; TODO fix UnauthorizedAccessException

This commit is contained in:
Joshua Askharoun
2021-04-26 05:09:48 -05:00
parent 7161797d74
commit ff14cee068
6 changed files with 42 additions and 15 deletions
-6
View File
@@ -47,11 +47,5 @@ namespace ZuneModCore
}
public abstract IReadOnlyList<Type>? DependentMods { get; }
internal FileStream OpenFileInStorageDirectory(string filename)
{
FileInfo info = new(Path.Combine(StorageDirectory, filename));
return File.Create(info.FullName);
}
}
}