Junk items are now transfered to your blanket so you can use them in crafting. No UI for that though.

This commit is contained in:
Zed A. Shaw 2025-04-27 13:35:05 -04:00
parent bc557652ba
commit 1a9e068d02
10 changed files with 86 additions and 53 deletions

View file

@ -3,7 +3,6 @@
#include "ai.hpp"
#include "config.hpp"
#include "dinkyecs.hpp"
#include "components.hpp"
namespace ritual {
enum class Element {
@ -73,6 +72,10 @@ namespace ritual {
using JunkItem = std::string;
struct JunkPile {
std::vector<JunkItem> contents;
};
struct Blanket {
DinkyECS::World contents;