home · contact · privacy
6e4edb908c2779a1648387417bb5c2a9fcbd642b
[plomrogue] / src / server / field_of_view.h
1 /* src/server/field_of_view.h
2  *
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.
6  *
7  * Generate field of view maps.
8  */
9
10 #ifndef FIELD_OF_VIEW_H
11 #define FIELD_OF_VIEW_H
12
13 #include <stdint.h> /* uint8_t */
14 struct Thing;
15
16
17
18 /* Build "t"'s field of view and update its map memory with the result. */
19 extern void build_fov_map(struct Thing * t);
20
21
22
23 #endif