aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ch/epfl/xblast/Cell.java1
-rw-r--r--src/ch/epfl/xblast/Direction.java3
-rw-r--r--src/ch/epfl/xblast/SubCell.java1
3 files changed, 4 insertions, 1 deletions
diff --git a/src/ch/epfl/xblast/Cell.java b/src/ch/epfl/xblast/Cell.java
index 9a17f6a..d31a889 100644
--- a/src/ch/epfl/xblast/Cell.java
+++ b/src/ch/epfl/xblast/Cell.java
@@ -8,6 +8,7 @@ import java.util.List;
8 * A Cell. 8 * A Cell.
9 * 9 *
10 * @author Pacien TRAN-GIRARD (261948) 10 * @author Pacien TRAN-GIRARD (261948)
11 * @author Timothée FLOURE (257420)
11 */ 12 */
12public final class Cell { 13public final class Cell {
13 14
diff --git a/src/ch/epfl/xblast/Direction.java b/src/ch/epfl/xblast/Direction.java
index e9d5961..700f9be 100644
--- a/src/ch/epfl/xblast/Direction.java
+++ b/src/ch/epfl/xblast/Direction.java
@@ -2,8 +2,9 @@ package ch.epfl.xblast;
2 2
3/** 3/**
4 * A Direction. 4 * A Direction.
5 * 5 *
6 * @author Pacien TRAN-GIRARD (261948) 6 * @author Pacien TRAN-GIRARD (261948)
7 * @author Timothée FLOURE (257420)
7 */ 8 */
8public enum Direction { 9public enum Direction {
9 10
diff --git a/src/ch/epfl/xblast/SubCell.java b/src/ch/epfl/xblast/SubCell.java
index b4f9c91..a95e65e 100644
--- a/src/ch/epfl/xblast/SubCell.java
+++ b/src/ch/epfl/xblast/SubCell.java
@@ -4,6 +4,7 @@ package ch.epfl.xblast;
4 * A SubCell. 4 * A SubCell.
5 * 5 *
6 * @author Pacien TRAN-GIRARD (261948) 6 * @author Pacien TRAN-GIRARD (261948)
7 * @author Timothée FLOURE (257420)
7 */ 8 */
8public final class SubCell { 9public final class SubCell {
9 10