#ifndef __ENEMIES_H__ #define __ENEMIES_H__ #include #include "enemy.h" std::unique_ptr new_dragon(RNG *rng, const position &pos, const position &fallback, const feature enabled_features, int which_room); std::unique_ptr new_enemy(RNG *rng, const position &pos, const feature enabled_features, int which_room); #endif