aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimothée Floure2016-05-09 13:46:36 +0200
committerTimothée Floure2016-05-09 13:46:36 +0200
commite50e68d0523ece7cdf772b12904a6c0dafa2ec4a (patch)
treeaab772188e6de4b471a9370bd834879101bd9819 /src
parent8e190958bfe7604ca9e444702d466972a4f192da (diff)
downloadxblast-e50e68d0523ece7cdf772b12904a6c0dafa2ec4a.tar.gz
PlayerAction Enum and rename RandomSimulation to ConsoleSimulation
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}