using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace SCJMapper_V2.Actions { /// /// Our INPUT TreeNode - inherits from ActionTreeNode - serves as a distinct type in the ActionTree for Inputs /// /// class ActionTreeInputNode : ActionTreeNode { // Object defs /// /// cTor: empty /// public ActionTreeInputNode( ) : base( ) { } /// /// cTor: just create a node without added functionality /// NOTE: must fill properties to work /// /// The Text element of the Node public ActionTreeInputNode( string text ) : base ( text ) { } /// /// cTor: just create a node without added functionality /// NOTE: must fill properties to work /// /// The Text element of the Node /// The child list public ActionTreeInputNode( string text, ActionTreeInputNode[] children ) : base( text, children ) { } /// /// cTor: Copy src to this new node /// /// Src node to copy from public ActionTreeInputNode( ActionTreeInputNode srcNode ) : base( srcNode ) { } } }