- Moved calc_dmg to characters.h

- put vampire into new source files
This commit is contained in:
a25liang
2024-07-02 20:39:48 -04:00
parent eea910ae33
commit 234f06191a
7 changed files with 74 additions and 15 deletions

View File

@ -16,10 +16,10 @@ public:
virtual result attack(const direction dir,
const character_list &chlist) override;
virtual result get_hit(const enum race &race, const int atk,
const float hitrate) override;
const float hit_rate) override;
};
// TODO: fill out the other races
// TODO: implement enemie movement
#endif