From e2f344f4ff6683239dc78dc241b099570180864a Mon Sep 17 00:00:00 2001 From: Timothée Floure Date: Sun, 8 May 2016 14:14:34 +0200 Subject: Rewrite few comments in client.GameState (minor) --- src/ch/epfl/xblast/client/GameState.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ch/epfl/xblast/client/GameState.java b/src/ch/epfl/xblast/client/GameState.java index 154a452..4906094 100644 --- a/src/ch/epfl/xblast/client/GameState.java +++ b/src/ch/epfl/xblast/client/GameState.java @@ -9,7 +9,10 @@ import java.util.List; /** * @author Timothée FLOURE (257420) */ -public class GameState { +public final class GameState { + /** + * GameState's parameters. + */ private final List players; private final List board; private final List explosions; @@ -17,9 +20,12 @@ public class GameState { private final List ticks; /** - * Player. + * A Player. */ public static final class Player { + /** + * Player's parameters. + */ private final PlayerID id; private final int lives; private final SubCell position; -- cgit v1.2.3