- [CLI] added export_type option, #35.

This commit is contained in:
Razmoth
2023-11-18 18:24:12 +04:00
parent 727374ac2f
commit 43f3f52be3
5 changed files with 43 additions and 20 deletions

10
AssetStudio/ExportType.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace AssetStudio
{
public enum ExportType
{
Convert,
Raw,
Dump,
JSON
}
}