コード例 #1
0
 public ActionTemperature(double temperature, RobotPartType robotPart, bool wait, bool relative) : base()
 {
     this.temperature = temperature;
     this.robotPart   = robotPart;
     this.wait        = wait;
     this.relative    = relative;
 }
コード例 #2
0
 public bool IssueTemperatureRequest(double temp, RobotPartType robotPart, bool waitToReachTemp, bool relative) =>
 IssueApplyActionRequest(new ActionTemperature(temp, robotPart, waitToReachTemp, relative));
コード例 #3
0
ファイル: Action.cs プロジェクト: tatlin/Machina
 public static ActionTemperature Temperature(double temp, RobotPartType devicePart, bool wait, bool relative)
 {
     return(new ActionTemperature(temp, devicePart, wait, relative));
 }
コード例 #4
0
ファイル: ItemData.cs プロジェクト: kkoceva/KodTakovaUnited
 public RobotItemData(RobotPartType robotTypePart)
 {
     this.robotTypePart = robotTypePart;
 }