Level traversal works, but it's very immediate. Next is a little 'confirm level' modal and a transition screen.

This commit is contained in:
Zed A. Shaw 2025-02-24 23:26:50 -05:00
parent 1886c99920
commit 29e6d45dc6
14 changed files with 98 additions and 43 deletions

View file

@ -15,6 +15,7 @@ namespace components {
}
bool Inventory::has_item(size_t at) {
fmt::println(">>> INVENTORY: requesting item at {}, have {} items in stock", at, items.size());
return at < items.size();
}