This commit is contained in:
Razmoth
2023-08-21 21:45:57 +04:00
parent 6da2387c8c
commit 0bd3fa6db2
48 changed files with 967 additions and 510 deletions

View File

@@ -13,5 +13,15 @@ namespace AssetStudio
//custom
public string fileName;
public override string ToString()
{
var sb = new StringBuilder();
sb.Append($"Guid: {guid} | ");
sb.Append($"type: {type} | ");
sb.Append($"pathName: {pathName} | ");
sb.Append($"fileName: {fileName}");
return sb.ToString();
}
}
}