mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-23 04:33:04 +00:00
17 lines
214 B
C#
17 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;
|
||
|
}
|
||
|
}
|
||
|
}
|