16 lines
327 B
C#
16 lines
327 B
C#
namespace AssetStudio
|
|
{
|
|
public class ObjectInfo
|
|
{
|
|
public long byteStart;
|
|
public uint byteSize;
|
|
public int typeID;
|
|
public int classID;
|
|
public ushort isDestroyed;
|
|
public byte stripped;
|
|
|
|
public long m_PathID;
|
|
public SerializedType serializedType;
|
|
}
|
|
}
|