Implement preset path in file dialog.

This commit is contained in:
2022-12-16 17:50:26 +08:00
parent e6d94f248c
commit 5d17555744
4 changed files with 51 additions and 15 deletions

View File

@@ -1,4 +1,6 @@
namespace Cryville.Crtr.Browsing {
using System.Collections.Generic;
namespace Cryville.Crtr.Browsing {
public interface IResourceManager<T> {
string[] CurrentDirectory { get; }
int ChangeDirectory(string[] dir);
@@ -10,5 +12,6 @@
bool ImportItemFrom(string path);
string[] GetSupportedFormats();
Dictionary<string, string> GetPresetPaths();
}
}