20 lines
392 B
C#
20 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public class TypeTree
|
|
{
|
|
public string m_Type;
|
|
public string m_Name;
|
|
public int m_ByteSize;
|
|
public int m_Index;
|
|
public int m_IsArray;
|
|
public int m_Version;
|
|
public int m_MetaFlag;
|
|
public int m_Depth;
|
|
}
|
|
}
|