summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/graphics
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-11-24 11:15:53 +0100
committerPacien TRAN-GIRARD2015-11-24 11:15:53 +0100
commitfb492341a1d05590c5230e8e0bd5e48f530944fe (patch)
tree1bd1e9a30239cf8f3415f1c2d1ef6df04dab91cc /src/ch/epfl/maze/graphics
parentbc477506342411e9156b3230d847cb92bcb8e5f9 (diff)
downloadmaze-solver-fb492341a1d05590c5230e8e0bd5e48f530944fe.tar.gz
Properly set class authors
Diffstat (limited to 'src/ch/epfl/maze/graphics')
-rw-r--r--src/ch/epfl/maze/graphics/Animation.java1
-rw-r--r--src/ch/epfl/maze/graphics/Display.java2
-rw-r--r--src/ch/epfl/maze/graphics/GraphicComponent.java2
3 files changed, 5 insertions, 0 deletions
diff --git a/src/ch/epfl/maze/graphics/Animation.java b/src/ch/epfl/maze/graphics/Animation.java
index a00b6b2..497d417 100644
--- a/src/ch/epfl/maze/graphics/Animation.java
+++ b/src/ch/epfl/maze/graphics/Animation.java
@@ -20,6 +20,7 @@ import java.util.TreeMap;
20 * Handles the animation of a {@code Simulation} by extrapolating the positions 20 * Handles the animation of a {@code Simulation} by extrapolating the positions
21 * of animals. 21 * of animals.
22 * 22 *
23 * @author EPFL
23 * @author Pacien TRAN-GIRARD 24 * @author Pacien TRAN-GIRARD
24 */ 25 */
25public final class Animation { 26public final class Animation {
diff --git a/src/ch/epfl/maze/graphics/Display.java b/src/ch/epfl/maze/graphics/Display.java
index baacefa..a0c37f4 100644
--- a/src/ch/epfl/maze/graphics/Display.java
+++ b/src/ch/epfl/maze/graphics/Display.java
@@ -16,6 +16,8 @@ import java.util.Map;
16 16
17/** 17/**
18 * Handles the display of a {@code Simulation} on a window. 18 * Handles the display of a {@code Simulation} on a window.
19 *
20 * @author EPFL
19 */ 21 */
20public final class Display implements Runnable { 22public final class Display implements Runnable {
21 23
diff --git a/src/ch/epfl/maze/graphics/GraphicComponent.java b/src/ch/epfl/maze/graphics/GraphicComponent.java
index 44b4b1f..e63b145 100644
--- a/src/ch/epfl/maze/graphics/GraphicComponent.java
+++ b/src/ch/epfl/maze/graphics/GraphicComponent.java
@@ -12,6 +12,8 @@ import java.awt.image.ImageObserver;
12 12
13/** 13/**
14 * Graphic component of an animal that will be drawn by an {@link Animation}. 14 * Graphic component of an animal that will be drawn by an {@link Animation}.
15 *
16 * @author EPFL
15 */ 17 */
16public final class GraphicComponent { 18public final class GraphicComponent {
17 19