renamed display to output

This commit is contained in:
2024-07-15 16:49:18 -04:00
parent 73cdb88458
commit fb026e36a8
43 changed files with 49 additions and 341 deletions

View File

@ -6,7 +6,7 @@ dwarf::dwarf(RNG *rng, const feature enabled_features, const position &pos,
const int gen_room_num):
enemy_base{rng, enabled_features, rdwarf, pos, gen_room_num, "W"} {}
void dwarf::print(display *out) {
void dwarf::print(output *out) {
out->print_char(pos, 'W', COLOR_PAIR(COLOR_RED));
}