Cereal works pretty well so I may use it, but there's one more library I want to try first called tser.

This commit is contained in:
Zed A. Shaw 2024-11-04 05:07:49 -05:00
parent ddf1ba955c
commit 713d400d17
9 changed files with 95 additions and 21 deletions

View file

@ -25,4 +25,16 @@ namespace Components {
struct Tile {
std::string chr = "!";
};
struct MapConfig {
std::string WALL_TILE;
std::string FLOOR_TILE;
std::string PLAYER_TILE;
std::string ENEMY_TILE;
std::string BG_TILE;
};
struct EnemyConfig {
int HEARING_DISTANCE;
};
}