package edu.mit.roborace;

public class Constants {
    static int NORTH = 0;
    static int SOUTH = 1;
    static int EAST = 2;
    static int WEST = 3;

    // *** These sequences need to be finished
    static String leaveSquareSeq[] = { "Water",
				"OilSlick",
				"Wall",
				"Teleporter",
				"Randomizer" };
    static String moveFromSeq[] = { "Wall",
				    "Portal" };
}
