What's the best way to save data for an inventory with dozens of tools instead of using Value objects?

Hello. I was hired to make a game, and I’m right now making the inventory. But, I’m looking for a better way to save the data of each tool (amount) instead of using Value objects, what can I do instead?

Thank you.

Hi, I use value objects and dictionaries. What is your code?

1 Like

I use normal Value objects for that. Is there any simpler way than that/other?

Imo simplest way, it’d be alot more complicated to do it another way.

Okay. Thank you for your answer!