public override void goRotation() { if (Row != null) { Row.GO(); } }
public override void goRight() { if (Right != null) { Right.GO(); } }
public override void goLeft() { if (Left != null) { Left.GO(); } }
public override void goDown() { if (Down != null) { Down.GO(); downPush = true; } }