diff options
author | IIMarckus <iimarckus@gmail.com> | 2011-11-13 20:18:20 -0700 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2011-11-13 20:18:20 -0700 |
commit | bf33b737b74c47734a4b889b211df22b941c0534 (patch) | |
tree | 1dbd3c8f027c89f413c2ad1ff04c455282728056 | |
parent | 36c926f342d6b5096c8fc3655ba3eb0c2265aa4c (diff) |
Add constants for direction of connections.
hg-commit-id: b7e25e860a9e
-rw-r--r-- | constants.asm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index 74a8a695..ad6e1d54 100644 --- a/constants.asm +++ b/constants.asm @@ -882,3 +882,8 @@ ELECTRIC EQU $17 PSYCHIC EQU $18 ICE EQU $19 DRAGON EQU $1A + +EAST EQU 1 +WEST EQU 2 +SOUTH EQU 4 +NORTH EQU 8 |