finished the bulk of game
This commit is contained in:
14
src/enemies/human.h
Normal file
14
src/enemies/human.h
Normal file
@ -0,0 +1,14 @@
|
||||
#ifndef __HUMAN_H__
|
||||
#define __HUMAN_H__
|
||||
|
||||
#include "../enemy.h"
|
||||
|
||||
class human final: public enemy_base {
|
||||
public:
|
||||
human(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;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user