More notes on the next things to do.

This commit is contained in:
Zed A. Shaw 2024-11-07 02:06:22 -05:00
parent 011fee4872
commit 0e79288afc
8 changed files with 31 additions and 6 deletions

View file

@ -27,6 +27,11 @@ namespace components {
DEFINE_SERIALIZABLE(Loot, amount);
};
struct Inventory {
int gold;
DEFINE_SERIALIZABLE(Inventory, gold);
};
struct Tile {
std::string chr;
DEFINE_SERIALIZABLE(Tile, chr);