diff options
author | Timothée Floure | 2016-05-09 13:46:36 +0200 |
---|---|---|
committer | Timothée Floure | 2016-05-09 13:46:36 +0200 |
commit | e50e68d0523ece7cdf772b12904a6c0dafa2ec4a (patch) | |
tree | aab772188e6de4b471a9370bd834879101bd9819 /src/ch | |
parent | 8e190958bfe7604ca9e444702d466972a4f192da (diff) | |
download | xblast-e50e68d0523ece7cdf772b12904a6c0dafa2ec4a.tar.gz |
PlayerAction Enum and rename RandomSimulation to ConsoleSimulation
Diffstat (limited to 'src/ch')
-rw-r--r-- | src/ch/epfl/xblast/PlayerAction.java | 14 |
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 @@ | |||
1 | package ch.epfl.xblast; | ||
2 | |||
3 | /** | ||
4 | * @author Timothée FLOURE (257420) | ||
5 | */ | ||
6 | public enum PlayerAction { | ||
7 | JOIN_GAME, | ||
8 | MOVE_N, | ||
9 | MOVE_E, | ||
10 | MOVE_S, | ||
11 | MOVE_W, | ||
12 | STOP, | ||
13 | DROP_BOMB | ||
14 | } | ||