X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fmap_objects.h;h=1e32318e1c503f10e4d50481ac46408f0e280be6;hb=273161a3d8956e98308a79169dcf7c70a89992fe;hp=d18e3c259f4df1f422420dc77da12a34c4ee74e2;hpb=2a60941d0815c19c11a01943faed931e0b364d4f;p=plomrogue diff --git a/src/server/map_objects.h b/src/server/map_objects.h index d18e3c2..1e32318 100644 --- a/src/server/map_objects.h +++ b/src/server/map_objects.h @@ -17,6 +17,7 @@ struct MapObj struct MapObj * next; /* pointer to next one in map object chain */ struct MapObj * owns; /* chain of map objects owned / in inventory */ struct yx_uint8 pos; /* coordinate on map */ + uint8_t * fov_map; /* map of the object's field of view */ uint8_t id; /* individual map object's unique identifier */ uint8_t type; /* ID of appropriate map object definition */ uint8_t lifepoints; /* 0: object is inanimate; >0: hitpoints */