mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-22 20:23:05 +00:00
16 lines
214 B
C#
16 lines
214 B
C#
using System.Windows.Forms;
|
|
|
|
namespace XCI_Explorer.Helpers
|
|
{
|
|
public class BetterTreeNode : TreeNode
|
|
{
|
|
public long Offset;
|
|
|
|
public long Size;
|
|
|
|
public BetterTreeNode(string t)
|
|
{
|
|
base.Text = t;
|
|
}
|
|
}
|
|
}
|