From 8b899014efc2c7e5c68d1db26d72eda180c635c2 Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Wed, 3 Dec 2008 19:00:09 +0000 Subject: [PATCH] Let's reorder those to go clockwise around the compass (and match the set of cardinals in yohoho that I want to replace with this) git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@728 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/java/com/threerings/util/DirectionCodes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/util/DirectionCodes.java b/src/java/com/threerings/util/DirectionCodes.java index b67e6e53..6475a897 100644 --- a/src/java/com/threerings/util/DirectionCodes.java +++ b/src/java/com/threerings/util/DirectionCodes.java @@ -109,5 +109,5 @@ public interface DirectionCodes public static final int FINE_DIRECTION_COUNT = 16; /** The four points of the compass. */ - public static final int[] CARDINAL_DIRECTIONS = { NORTH, SOUTH, EAST, WEST }; + public static final int[] CARDINAL_DIRECTIONS = { NORTH, EAST, SOUTH, WEST }; }