00001 /* 00002 * File: mon-act.h 00003 * Summary: Monsters doing stuff (monsters acting). 00004 * Written by: Linley Henzell 00005 */ 00006 00007 #ifndef MONACT_H 00008 #define MONACT_H 00009 00010 bool mons_can_move_towards_target(const monster* mon); 00011 00012 void handle_monsters(void); 00013 void handle_monster_move(monster* mon); 00014 00015 #define ENERGY_SUBMERGE(entry) (std::max(entry->energy_usage.swim / 2, 1)) 00016 00017 #endif