diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2012-05-25 00:16:16 -0500 | 
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-25 00:16:16 -0500 | 
| commit | 484ca4f6bb5ef9e56cb964ea20f23f95645e68bf (patch) | |
| tree | ca090a48fa1a27a189a8fe34240e5622c76442a2 | |
| parent | 6074a55e3d40fb6e94ecb07092317bf54f5e7ad7 (diff) | |
connection direction constants
| -rw-r--r-- | constants.asm | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/constants.asm b/constants.asm index 0dcb3af06..4d24a94d3 100644 --- a/constants.asm +++ b/constants.asm @@ -2174,3 +2174,10 @@ TR_NITE    EQU 3  ATK_GT_DEF EQU 1  ATK_LT_DEF EQU 2  ATK_EQ_DEF EQU 3 + + +; connection directions +EAST EQU 1 +WEST EQU 2 +SOUTH EQU 4 +NORTH EQU 8 | 
