Changeset 10014 for branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods
- Timestamp:
- 10/01/13 16:39:35 (11 years ago)
- Location:
- branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/Ahead.cs
r10011 r10014 44 44 : base("Ahead", "Immediately moves your robot ahead (forward) by distance measured in pixels.") { 45 45 Prefix = "setAhead("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/Back.cs
r10011 r10014 44 44 : base("Back", "Immediately moves your robot backward by distance measured in pixels.") { 45 45 Prefix = "setBack("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/DoNothing.cs
r10011 r10014 48 48 49 49 public override string Interpret(ISymbolicExpressionTreeNode node, IEnumerable<ISymbolicExpressionTreeNode> children) { 50 return ";";50 return string.Empty; 51 51 } 52 52 } -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/Fire.cs
r10011 r10014 44 44 : base("Fire", "Immediately fires a bullet.") { 45 45 Prefix = "setFire("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/TurnGunLeft.cs
r10011 r10014 44 44 : base("TurnGunLeft", "Immediately turns the robot's gun to the left by degrees.") { 45 45 Prefix = "setTurnGunLeft("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/TurnGunRight.cs
r10011 r10014 44 44 : base("TurnGunRight", "Immediately turns the robot's gun to the right by degrees.") { 45 45 Prefix = "setTurnGunRight("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/TurnLeft.cs
r10011 r10014 44 44 : base("TurnLeft", "Immediately turns the robot's body to the left by degrees.") { 45 45 Prefix = "setTurnLeft("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/TurnRadarLeft.cs
r10011 r10014 44 44 : base("TurnRadarLeft", "Immediately turns the robot's radar to the left by degrees.") { 45 45 Prefix = "setTurnRadarLeft("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/TurnRadarRight.cs
r10011 r10014 44 44 : base("TurnRadarRight", "Immediately turns the robot's radar to the right by degrees.") { 45 45 Prefix = "setTurnRadarRight("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48 -
branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/TurnRight.cs
r10011 r10014 44 44 : base("TurnRight", "Immediately turns the robot's body to the right by degrees.") { 45 45 Prefix = "setTurnRight("; 46 Suffix = ") ;";46 Suffix = ")"; 47 47 } 48 48
Note: See TracChangeset
for help on using the changeset viewer.