X-Git-Url: https://plomlompom.com/repos//%22https:/validator.w3.org/check?a=blobdiff_plain;f=src%2Fserver%2Fthings.h;h=ea37a81487160471b85bd8746c270380b1fc4de7;hb=b01c00f25907d81051b38d9dc39b6781f087ea90;hp=4c21c451f6d3730ae5c2eecded046daa4173431b;hpb=3cb6ed6453b22eba62f7c9186790813b0abebeb9;p=plomrogue diff --git a/src/server/things.h b/src/server/things.h index 4c21c45..ea37a81 100644 --- a/src/server/things.h +++ b/src/server/things.h @@ -18,7 +18,7 @@ struct Thing uint8_t id; /* individual thing's unique identifier */ struct Thing * owns; /* chain of things owned / in inventory */ struct yx_uint8 pos; /* coordinate on map */ - char * fov_map; /* map of the thing's field of view */ + char * fov_map; /* thing's FOV map; 'v':visible, 'H':hidden */ char * mem_map; /* map knowledge of thing by FOV and memory */ uint8_t type; /* ID of appropriate thing definition */ uint8_t lifepoints; /* 0: thing is inanimate; >0: hitpoints */