Add LocalResourceFinder.

This commit is contained in:
2022-12-16 17:41:23 +08:00
parent 7f2cfe94c1
commit 8eb0b11027
9 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace Cryville.Crtr.Browsing {
public abstract class LocalResourceFinder {
public abstract string Name { get; }
public abstract string GetRootPath();
}
}