blob: 0b360d18042cfeccca0a8303704989ac7fe02199 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.encrox.instanceddungeons;
public class Direction {
public static final byte NORTH = 0;
public static final byte EAST = 1;
public static final byte SOUTH = 2;
public static final byte WEST = 3;
}
|