mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-01-31 23:29:36 +01:00
lagde en classe som ineholder information om powerdown statusen til spilleren som blir sendt til serveren
This commit is contained in:
parent
3cac5d204d
commit
581e048646
@ -0,0 +1,15 @@
|
||||
package inf112.fiasko.roborally.networking.containers;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public class PowerdownContainer {
|
||||
private Map<String,Boolean> powerdown;
|
||||
|
||||
public PowerdownContainer(Map<String, Boolean> powerdown) {
|
||||
this.powerdown = powerdown;
|
||||
}
|
||||
|
||||
public Map<String, Boolean> getPowerdown() {
|
||||
return powerdown;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user