finished the bulk of game

This commit is contained in:
2024-07-14 21:32:41 -04:00
parent b3475b7530
commit af8bc4112c
110 changed files with 1876 additions and 1481 deletions

15
src/enemies/dragon.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef __DRAGON_H__
#define __DRAGON_H__
#include "../enemy.h"
class dragon final: public enemy_base {
public:
dragon(RNG *rng, const feature enabled_features, const position &pos,
const int gen_room_num);
void print(display *out) override;
const char *get_race_name() const override;
long_result act(level *lvl, character *pc, bool hostile) override;
};
#endif