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