ANSI code renderer starts working but I have to make it utf8/wchar_t friendly.
This commit is contained in:
parent
6ca4614fcb
commit
ae484bf425
9 changed files with 136 additions and 139 deletions
8
map.hpp
8
map.hpp
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue