Files
YarikStudio/AssetStudio/ObjectInfo.cs
2023-04-01 17:51:33 +04:00

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;
}
}