Add IStatModifier interface and CharacterWeaponsManager class
This commit is contained in:
12
Assets/Scripts/Systems/CharacterWeaponsManager.cs
Normal file
12
Assets/Scripts/Systems/CharacterWeaponsManager.cs
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user