blob: 05f391e727cecac02e65d03b9b7a23d1cba86c63 (
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;
}
|