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

@ -9,7 +9,7 @@ halfling::halfling(RNG *rng, const feature enabled_features,
const int gen_room_num):
enemy_base{rng, enabled_features, rhalfling, pos, gen_room_num, "L"} {}
void halfling::print(display *out) {
void halfling::print(output *out) {
out->print_char(pos, 'L', COLOR_PAIR(COLOR_RED));
}