diff options
| author | Franklin Wei <git@fwei.tk> | 2016-01-18 15:25:07 -0500 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2016-01-18 15:25:07 -0500 |
| commit | 31d9ec507ee68ce4829ae1687dbf76a911c4cc75 (patch) | |
| tree | 0f3831b0367b0182178b775311d4b56061793611 /src/room.h | |
| parent | 526f472c822fe567b3b50814b1321a8f7a24c945 (diff) | |
| download | netcosm-31d9ec507ee68ce4829ae1687dbf76a911c4cc75.zip netcosm-31d9ec507ee68ce4829ae1687dbf76a911c4cc75.tar.gz netcosm-31d9ec507ee68ce4829ae1687dbf76a911c4cc75.tar.bz2 netcosm-31d9ec507ee68ce4829ae1687dbf76a911c4cc75.tar.xz | |
minor polishing
Diffstat (limited to 'src/room.h')
| -rw-r--r-- | src/room.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ typedef enum room_id { ROOM_NONE = -1 } room_id; -typedef enum obj_id { OBJ_NONE = -1 } obj_id; +typedef unsigned __int128 obj_id; enum direction_t { DIR_N = 0, DIR_NE, DIR_E, DIR_SE, DIR_S, DIR_SW, DIR_W, DIR_NW, DIR_UP, DIR_DN, DIR_IN, DIR_OT, NUM_DIRECTIONS }; |