merged paul

This commit is contained in:
2024-07-13 16:14:31 -04:00
20 changed files with 324 additions and 63 deletions

View File

@ -13,9 +13,9 @@ void character::start_turn() {
base_hit_rate = {1, 1};
}
void character::print(display *out, bool color, bool player) {
void character::print(display *out, bool player) {
out->print_char(pos, player ? '@' : CHARACTER_REP[race],
COLOR_PAIR(COLOR_BLACK_ON_WHITE));
player ? COLOR_PAIR(COLOR_BLUE) : COLOR_PAIR(COLOR_RED));
}
enum race character::get_race() const {