aboutsummaryrefslogtreecommitdiff
path: root/src/ch/epfl
diff options
context:
space:
mode:
authorTimothée Floure2016-05-09 08:55:45 +0200
committerTimothée Floure2016-05-09 08:55:45 +0200
commit8e190958bfe7604ca9e444702d466972a4f192da (patch)
treea6118de02c6344f0e04340e73fd23d294b5230db /src/ch/epfl
parent55eff1840389058bfc8ce9e5a68356cf801a6a99 (diff)
downloadxblast-8e190958bfe7604ca9e444702d466972a4f192da.tar.gz
Change Level.DEFAULT_LEVEL to public
Diffstat (limited to 'src/ch/epfl')
-rw-r--r--src/ch/epfl/xblast/server/Level.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ch/epfl/xblast/server/Level.java b/src/ch/epfl/xblast/server/Level.java
index a386429..ea0d200 100644
--- a/src/ch/epfl/xblast/server/Level.java
+++ b/src/ch/epfl/xblast/server/Level.java
@@ -13,7 +13,7 @@ public final class Level {
13 /** 13 /**
14 * Level build with the default images and the default players/explosions/board parameters. 14 * Level build with the default images and the default players/explosions/board parameters.
15 */ 15 */
16 static final Level DEFAULT_LEVEL = new Level(BoardPainter.DEFAULT_BOARD_PAINTER, GameState.DEFAULT_GAME_STATE); 16 public static final Level DEFAULT_LEVEL = new Level(BoardPainter.DEFAULT_BOARD_PAINTER, GameState.DEFAULT_GAME_STATE);
17 17
18 private final BoardPainter painter; 18 private final BoardPainter painter;
19 private final GameState initialState; 19 private final GameState initialState;