mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-01-31 23:29:36 +01:00
Merge branch 'master' of https://github.com/inf112-v20/Fiasko
This commit is contained in:
commit
159ab791be
@ -136,14 +136,22 @@ public class Board {
|
||||
}
|
||||
|
||||
/**
|
||||
* sets the powerdown status of the robot
|
||||
* @param robotID the robotid of the robot
|
||||
* @param powerdown the status of the powerdown
|
||||
* Sets the power down status of the robot
|
||||
* @param robotID The robot id of the robot
|
||||
* @param powerdown The status of the powerdown
|
||||
*/
|
||||
public void setPowerDown(RobotID robotID,Boolean powerdown){
|
||||
robots.get(robotID).setPowerDown(powerdown);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the power down status of the robot
|
||||
* @param robotID The robot id of the robot
|
||||
*/
|
||||
public void getPowerDown(RobotID robotID) {
|
||||
robots.get(robotID).isInPowerDown();
|
||||
}
|
||||
|
||||
/**
|
||||
* removes one damage for a given robot given that it has taken som damage before
|
||||
* @param robotID the ID of the robot
|
||||
|
Loading…
x
Reference in New Issue
Block a user