Example #1
0
 public Statement(Block block, StatementTypes sType, Variable.Object var, Variable.Object val, string note) {
     gBlock = block;
     gAct = gBlock.Actuator;
     gStatementType = sType;
     //gArgs = args;
     gObjVar = var;
     gObjVal = val;
     gszNote = note;
 }
Example #2
0
 public Block(Actuator act, string name, bool bcontinue) {
     gAct = act;
     gszName = name.ToLower();
     gbContinue = bcontinue;
     gStatements = new StatementCollection();
 }