aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ch/epfl/xblast/PlayerAction.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ch/epfl/xblast/PlayerAction.java b/src/ch/epfl/xblast/PlayerAction.java
index f4da746..703bc9d 100644
--- a/src/ch/epfl/xblast/PlayerAction.java
+++ b/src/ch/epfl/xblast/PlayerAction.java
@@ -1,9 +1,13 @@
1package ch.epfl.xblast; 1package ch.epfl.xblast;
2 2
3/** 3/**
4 * The player action enum.
5 *
4 * @author Timothée FLOURE (257420) 6 * @author Timothée FLOURE (257420)
7 * @author Pacien TRAN-GIRARD (261948)
5 */ 8 */
6public enum PlayerAction { 9public enum PlayerAction {
10
7 JOIN_GAME, 11 JOIN_GAME,
8 MOVE_N, 12 MOVE_N,
9 MOVE_E, 13 MOVE_E,
@@ -11,4 +15,5 @@ public enum PlayerAction {
11 MOVE_W, 15 MOVE_W,
12 STOP, 16 STOP,
13 DROP_BOMB 17 DROP_BOMB
18
14} 19}