mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-10 06:34:15 +00:00
17 lines
314 B
C#
17 lines
314 B
C#
using System.Windows.Forms;
|
|
|
|
namespace XCI_Explorer.Helpers;
|
|
|
|
public class BetterTreeNode : TreeNode
|
|
{
|
|
public long Offset;
|
|
public long Size;
|
|
public string ExpectedHash;
|
|
public string ActualHash;
|
|
public long HashedRegionSize;
|
|
|
|
public BetterTreeNode(string t)
|
|
{
|
|
Text = t;
|
|
}
|
|
}
|