22 lines
483 B
C++
22 lines
483 B
C++
#include "rooms.h"
|
|
#include <stdint.h>
|
|
|
|
namespace rooms
|
|
{
|
|
static const char *paletteMap[] = {
|
|
"black", "bright_black", "blue", "bright_blue",
|
|
"red", "bright_red", "magenta", "bright_magenta",
|
|
"green", "bright_green", "cyan", "bright_cyan",
|
|
"yellow", "bright_yellow", "white", "bright_white"
|
|
};
|
|
|
|
void load()
|
|
{
|
|
//fs::path target_dir = "./data/room";
|
|
|
|
int room_num = 1;
|
|
|
|
|
|
}
|
|
}
|