aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ch/epfl/xblast/PlayerAction.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ch/epfl/xblast/PlayerAction.java b/src/ch/epfl/xblast/PlayerAction.java
new file mode 100644
index 0000000..f4da746
--- /dev/null
+++ b/src/ch/epfl/xblast/PlayerAction.java
@@ -0,0 +1,14 @@
1package ch.epfl.xblast;
2
3/**
4 * @author Timothée FLOURE (257420)
5 */
6public enum PlayerAction {
7 JOIN_GAME,
8 MOVE_N,
9 MOVE_E,
10 MOVE_S,
11 MOVE_W,
12 STOP,
13 DROP_BOMB
14}