Have a plan for the new inventory and looting system, now have to implement it. Temporarily you can't pick anything up, but it will go away.

This commit is contained in:
Zed A. Shaw 2025-06-02 00:58:16 -04:00
parent b8d2d1870d
commit ab391aaa97
9 changed files with 23 additions and 261 deletions

View file

@ -16,6 +16,11 @@ namespace components {
using std::string;
using namespace nlohmann;
struct InventoryItem {
int count;
json data;
};
struct SpriteEffect {
int frames;
std::shared_ptr<sf::Shader> effect;