mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2025-01-19 00:06:16 +01:00
trigger timeoutPopup
This commit is contained in:
parent
86ece3b70d
commit
44d64c4e0f
@ -8,6 +8,7 @@ import pp.monopoly.client.gui.popups.EventCardPopup;
|
||||
import pp.monopoly.client.gui.popups.FoodFieldCard;
|
||||
import pp.monopoly.client.gui.popups.GateFieldCard;
|
||||
import pp.monopoly.client.gui.popups.LooserPopUp;
|
||||
import pp.monopoly.client.gui.popups.TimeOut;
|
||||
import pp.monopoly.client.gui.popups.WinnerPopUp;
|
||||
import pp.monopoly.game.server.Player;
|
||||
import pp.monopoly.model.fields.BuildingProperty;
|
||||
@ -152,6 +153,8 @@ public class TestWorld implements GameEventListener{
|
||||
new WinnerPopUp(app).open();
|
||||
} else if(event.msg().equals("Looser")) {
|
||||
new LooserPopUp(app).open();
|
||||
} else if(event.msg().equals("timeout")) {
|
||||
new TimeOut(app).open();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -280,7 +280,7 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
||||
*/
|
||||
@Override
|
||||
public void received(TimeOutWarning msg) {
|
||||
|
||||
notifyListeners(new PopUpEvent("timeout"));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user