1 /* src/server/field_of_view.h
3 * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
4 * or any later version. For details on its copyright, license, and warranties,
5 * see the file NOTICE in the root directory of the PlomRogue source package.
7 * Generate field of view maps.
10 #ifndef FIELD_OF_VIEW_H
11 #define FIELD_OF_VIEW_H
13 #include <stdint.h> /* uint8_t */
18 /* Build "t"'s field of view and update its map memory with the result. */
19 extern void build_fov_map(struct Thing * t);