Rendering with color is working now but still has problems with enabling/resetting the default colors.

This commit is contained in:
Zed A. Shaw 2024-11-02 06:02:13 -04:00
parent a36b187879
commit e864e14eab
8 changed files with 57 additions and 45 deletions

View file

@ -12,9 +12,10 @@
#define WALL_VALUE 1
#define SPACE_VALUE 0
#define WALL_TILE "█"
#define FLOOR_TILE "."
#define PLAYER_TILE ""
#define FLOOR_TILE "\u2849"
#define PLAYER_TILE ""
#define ENEMY_TILE "Ω"
#define BG_TILE L'█'
struct Room {
size_t x = 0;