- [CLI] Added feature to search prebuild AssetMap to loaded filteded files only.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AssetStudio;
|
||||
public static class TypeFlags
|
||||
@@ -44,3 +45,12 @@ public static class TypeFlags
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum TypeFlag
|
||||
{
|
||||
None,
|
||||
Parse,
|
||||
Export,
|
||||
Both = Parse | Export,
|
||||
}
|
||||
Reference in New Issue
Block a user