mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
25 lines
512 B
C#
25 lines
512 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Unity_Studio
|
|
{
|
|
public class AssetPreloadData : ListViewItem
|
|
{
|
|
public long m_PathID;
|
|
public int Offset;
|
|
public int Size;
|
|
public int Type1;
|
|
public ushort Type2;
|
|
|
|
public string TypeString;
|
|
public int exportSize;
|
|
public string InfoText;
|
|
|
|
public AssetsFile sourceFile;
|
|
public string uniqueID;
|
|
}
|
|
}
|