moved files out of subdirectories, added required documentation
This commit is contained in:
13
src/swordsman.h
Normal file
13
src/swordsman.h
Normal file
@ -0,0 +1,13 @@
|
||||
#ifndef __SWORDSMAN_H__
|
||||
#define __SWORDSMAN_H__
|
||||
|
||||
#include "enemy.h"
|
||||
|
||||
class swordsman final: public enemy_base {
|
||||
public:
|
||||
swordsman(RNG *rng, const feature enabled_features, const position &pos,
|
||||
const int gen_room_num);
|
||||
const char *get_race_name() const override;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user