Add IPathCheck interface

This commit is contained in:
Matt Nadareski
2021-02-26 00:32:09 -08:00
parent df1e14b6c9
commit c6eaafebbe
44 changed files with 185 additions and 126 deletions

View File

@@ -4,9 +4,10 @@ using System.Linq;
namespace BurnOutSharp.ProtectionType
{
public class ProtectDVDVideo
public class ProtectDVDVideo : IPathCheck
{
public static string CheckPath(string path, IEnumerable<string> files, bool isDirectory)
/// <inheritdoc/>
public string CheckPath(string path, IEnumerable<string> files, bool isDirectory)
{
if (!isDirectory)
return null;