mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-27 22:00:23 -04:00
19 lines
349 B
C#
19 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public class ObjectInfo
|
|
{
|
|
public uint byteStart;
|
|
public uint byteSize;
|
|
public int typeID;
|
|
public int classID;
|
|
|
|
public long m_PathID;
|
|
public SerializedType serializedType;
|
|
}
|
|
}
|