Add project files.
This commit is contained in:
14
Assets/Cryville/Crtr/Browsing/IResourceManager.cs
Normal file
14
Assets/Cryville/Crtr/Browsing/IResourceManager.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Cryville.Crtr.Browsing {
|
||||
public interface IResourceManager<T> {
|
||||
string[] CurrentDirectory { get; }
|
||||
int ChangeDirectory(string[] dir);
|
||||
int OpenDirectory(int id);
|
||||
int ReturnToDirectory(int id);
|
||||
ResourceItemMeta GetItemMeta(int id);
|
||||
T GetItemDetail(int id);
|
||||
string GetItemPath(int id);
|
||||
|
||||
bool ImportItemFrom(string path);
|
||||
string[] GetSupportedFormats();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user