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

View File

@ -1,17 +0,0 @@
#ifndef __DRAGON_H__
#define __DRAGON_H__
#include "characters.h"
class dragon final: public character {
public:
dragon(RNG *rng, const position &pos);
virtual result attack(const direction dir,
character_list &chlist) override;
virtual result get_hit(const enum race &race, const int atk,
const fraction hit_rate) override;
virtual result move(const direction dir,
const position_list &avilable_positions) override;
};
#endif