Add Inventory system with Inventory, InventorySlot, and StatModifierItem classes; update character attributes to include level and experience

This commit is contained in:
2025-07-11 23:57:57 +02:00
parent c50b91eacb
commit 8f3a913b7e
19 changed files with 344 additions and 388 deletions

View File

@@ -0,0 +1,13 @@
using System;
using Sirenix.Serialization;
using UnityEngine;
namespace Inventory
{
[Serializable]
public class InventorySlot
{
[OdinSerialize] public ScriptableObject item;
[OdinSerialize] public int quantity;
}
}