- [CLI] Added feature to search prebuild AssetMap to loaded filteded files only.

This commit is contained in:
Razmoth
2024-02-06 21:04:28 +04:00
parent 5597235af6
commit 61ff13f127
3 changed files with 102 additions and 1 deletions

View File

@@ -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,
}