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:
parent
ddf1ba955c
commit
713d400d17
9 changed files with 95 additions and 21 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue