home · contact · privacy
Server: Add ENEMY_FOV option (default: off) to force FOV on enemies.
[plomrogue] / src / server / world.h
index ed019f2fb25742f9e64b944d9eef71b3ac723119..be772fcd3ed473ebd0bb50e6c00ab9c2d20d9cd2 100644 (file)
@@ -40,6 +40,7 @@ struct World
     uint8_t player_type; /* Map object type that player will start as. */
     uint8_t is_verbose; /* Should server send debugging info to stdout? */
     uint8_t map_obj_count; /* Counts map objects generated so far. */
+    uint8_t enemy_fov; /* != 0 if non-player actors only see field of view. */
 };
 
 extern struct World world;