Exemplo n.º 1
0
 public CodePiece(string Text, int StartLocation, int EndLocation, InstructionFramework Framework)
 {
     this.Text = Text;
     this.StartLocation = StartLocation;
     this.EndLocation = EndLocation;
     this.Framework = Framework;
     ChildPieces = new List<CodePiece>();
 }
Exemplo n.º 2
0
 public CodePiece(string Text, int StartLocation, int EndLocation)
 {
     this.Text = Text;
     this.StartLocation = StartLocation;
     this.EndLocation = EndLocation;
     Framework = null;
     ChildPieces = new List<CodePiece>();
 }