v0.90.10
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace AssetStudio
|
||||
using System.Text;
|
||||
|
||||
namespace AssetStudio
|
||||
{
|
||||
public class ObjectInfo
|
||||
{
|
||||
@@ -11,5 +13,18 @@
|
||||
|
||||
public long m_PathID;
|
||||
public SerializedType serializedType;
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
var sb = new StringBuilder();
|
||||
sb.Append($"byteStart: 0x{byteStart:X8} | ");
|
||||
sb.Append($"byteSize: 0x{byteSize:X8} | ");
|
||||
sb.Append($"typeID: {typeID} | ");
|
||||
sb.Append($"classID: {classID} | ");
|
||||
sb.Append($"isDestroyed: {isDestroyed} | ");
|
||||
sb.Append($"stripped: {stripped} | ");
|
||||
sb.Append($"PathID: {m_PathID}");
|
||||
return sb.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user