// Decompiled with JetBrains decompiler // Type: FiestaShark.StructureNode // Assembly: FiestaShark, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null // MVID: 12469781-3753-4869-9C1A-117F1862B52C // Assembly location: E:\Fiesta\Emus\DragonFiesta\Tools\FiestaShark-Farbod\FiestaShark.exe using System.Windows.Forms; namespace FiestaShark { public class StructureNode : TreeNode { public byte[] Buffer; public int Cursor; public int Length; public StructureNode(string pDisplay, byte[] pBuffer, int pCursor, int pLength) : base(pDisplay) { this.Buffer = pBuffer; this.Cursor = pCursor; this.Length = pLength; } } }