From 48df7cf95016472105636427abc7df70ffa2a3b5 Mon Sep 17 00:00:00 2001 From: Seraina Date: Sat, 30 Apr 2022 18:48:36 +0200 Subject: [PATCH] Readded some variables that were deleted --- .../multiplayer/helpers/GuiParameters.java | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/helpers/GuiParameters.java b/src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/helpers/GuiParameters.java index 11605d2..5af59de 100644 --- a/src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/helpers/GuiParameters.java +++ b/src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/helpers/GuiParameters.java @@ -25,10 +25,26 @@ public class GuiParameters { */ public static final String noiseHeardAtPosition = "NOISE"; + /** + * Tells Gui, that the start view should be displayed + */ + public static final String viewChangeToStart = "VCSTART"; + + /** + * Tells Gui, that the lobby view should be displayed + */ + public static final String viewChangeToLobby = "VCLOBBY"; + + /** + * Tells Gui, that the game view should be displayed + */ + public static final String viewChangeToGame = "VCGAME"; + + /** * Tells, Gui, who the members of a specified Lobby are. * Form: {@code LMEMBS$$$..} */ - public static String viewChangeToLobby = "LMEMBS"; + public static String changeToLobby = "LMEMBS"; }