Add IStatModifier interface and CharacterWeaponsManager class
This commit is contained in:
12
Assets/Scripts/Interfaces/IStatModifier.cs
Normal file
12
Assets/Scripts/Interfaces/IStatModifier.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Data;
|
||||
|
||||
namespace Interfaces
|
||||
{
|
||||
public interface IStatModifier
|
||||
{
|
||||
void Apply(CharacterAttributes attributes);
|
||||
void Remove(CharacterAttributes attributes);
|
||||
|
||||
string Description { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user