aboutsummaryrefslogtreecommitdiff
path: root/src/ch/epfl/xblast/server/Block.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/xblast/server/Block.java')
-rw-r--r--src/ch/epfl/xblast/server/Block.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ch/epfl/xblast/server/Block.java b/src/ch/epfl/xblast/server/Block.java
index 1bfe891..5ada099 100644
--- a/src/ch/epfl/xblast/server/Block.java
+++ b/src/ch/epfl/xblast/server/Block.java
@@ -3,7 +3,7 @@ package ch.epfl.xblast.server;
3import java.util.NoSuchElementException; 3import java.util.NoSuchElementException;
4 4
5/** 5/**
6 * A Block. 6 * Blocks.
7 * 7 *
8 * @author Pacien TRAN-GIRARD (261948) 8 * @author Pacien TRAN-GIRARD (261948)
9 * @author Timothée FLOURE (257420) 9 * @author Timothée FLOURE (257420)
@@ -41,19 +41,19 @@ public enum Block {
41 BONUS_RANGE(Bonus.INC_RANGE); 41 BONUS_RANGE(Bonus.INC_RANGE);
42 42
43 /** 43 /**
44 * Corresponding bonus, or null 44 * Corresponding bonus, or null.
45 */ 45 */
46 private Bonus maybeAssociatedBonus; 46 private Bonus maybeAssociatedBonus;
47 47
48 /** 48 /**
49 * Main builder, used by the bonus blocks 49 * Main builder, used by the bonus blocks.
50 */ 50 */
51 Block(Bonus maybeAssociatedBonus) { 51 Block(Bonus maybeAssociatedBonus) {
52 this.maybeAssociatedBonus = maybeAssociatedBonus; 52 this.maybeAssociatedBonus = maybeAssociatedBonus;
53 } 53 }
54 54
55 /** 55 /**
56 * Default builder, used by the non-bonus blocks 56 * Default builder, used by the non-bonus blocks.
57 */ 57 */
58 Block() { 58 Block() {
59 this.maybeAssociatedBonus = null; 59 this.maybeAssociatedBonus = null;