Added self face

This commit is contained in:
durron597
2010-12-31 09:10:31 -05:00
parent 1c9930fadf
commit 9c82017a7f

View File

@@ -9,7 +9,8 @@ public enum BlockFace {
South(1, 0, 0),
West(0, 0, 1),
Up(0, 1, 0),
Down(0, -1, 0);
Down(0, -1, 0),
Self(0, 0, 0);
private final int modX;
private final int modY;