Add IStatModifier interface and CharacterWeaponsManager class

This commit is contained in:
2025-07-11 22:40:10 +02:00
parent b95ac51a82
commit cf586916c0
6 changed files with 32 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using Sirenix.Serialization;
using UnityEngine;
using Weapons;
namespace Systems
{
public class CharacterWeaponsManager : MonoBehaviour
{
[OdinSerialize] private List<Weapon> equippedWeapons = new();
}
}