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/merchant.cc Normal file
View File

@ -0,0 +1,15 @@
#include "merchant.h"
#include "../constants.h"
merchant::merchant(RNG *rng, const feature enabled_features,
const position &pos, const int gen_room_num):
enemy_base{rng, enabled_features, rmerchant, pos, gen_room_num, "M"} {}
void merchant::print(display *out) {
out->print_char(pos, 'M', COLOR_PAIR(COLOR_RED));
}
const char *merchant::get_race_name() const {
return "Merchant";
}