This commit is contained in:
kevinz000
2020-03-26 11:32:18 -07:00
parent b1a6d41b4f
commit 92b809634b
4 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
// We can't determine things like NORTHEAST vs NORTH *and* EAST without making our own flags :(
#define BLOCK_DIR_NORTH (1<<0)
#define BLOCK_DIR_NORTHEAST (1<<1)
#define BLCOK_DIR_NORTHWEST (1<<2)
#define BLOCK_DIR_NORTHWEST (1<<2)
#define BLOCK_DIR_WEST (1<<3)
#define BLOCK_DIR_EAST (1<<4)
#define BLOCK_DIR_SOUTH (1<<5)