Last change
on this file was ebd3538, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 6 years ago |
Initial commit. This codebase for the Lost Perception game was created by decompiling code from a jar file.
|
-
Property mode
set to
100644
|
File size:
324 bytes
|
Rev | Line | |
---|
[ebd3538] | 1 | package main;
|
---|
| 2 |
|
---|
| 3 | public enum Direction
|
---|
| 4 | {
|
---|
| 5 | North("North", 0),
|
---|
| 6 | South("South", 1),
|
---|
| 7 | East("East", 2),
|
---|
| 8 | West("West", 3),
|
---|
| 9 | NorthEast("NorthEast", 4),
|
---|
| 10 | SouthEast("SouthEast", 5),
|
---|
| 11 | SouthWest("SouthWest", 6),
|
---|
| 12 | NorthWest("NorthWest", 7);
|
---|
| 13 |
|
---|
| 14 | private Direction(final String s, final int n) {
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.