Files
YarikStudio/AssetStudio/FileIdentifier.cs
2023-08-21 21:45:57 +04:00

28 lines
725 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AssetStudio
{
public class FileIdentifier
{
public Guid guid;
public int type; //enum { kNonAssetType = 0, kDeprecatedCachedAssetType = 1, kSerializedAssetType = 2, kMetaAssetType = 3 };
public string pathName;
//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();
}
}
}