public void RemoveTool(RoboticArm tool) { if (Tool != null) { Tool = null; } else StatusMessage("Already removed"); }
public void InstallTool(RoboticArm tool) { if (Tool == null) { Tool = tool; RemainingBatteryCapacity -= 12; } else }