ANSI code renderer starts working but I have to make it utf8/wchar_t friendly.

This commit is contained in:
Zed A. Shaw 2024-11-01 18:07:47 -04:00
parent 6ca4614fcb
commit ae484bf425
9 changed files with 136 additions and 139 deletions

View file

@ -11,10 +11,10 @@
#define INV_SPACE 1
#define WALL_VALUE 1
#define SPACE_VALUE 0
#define WALL_TILE ""
#define FLOOR_TILE "#"
#define PLAYER_TILE ""
#define ENEMY_TILE "Ω"
#define WALL_TILE "#"
#define FLOOR_TILE "."
#define PLAYER_TILE "&"
#define ENEMY_TILE "!"
struct Room {
size_t x = 0;