12 lines
234 B
C#
12 lines
234 B
C#
using Data;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public interface IStatModifier
|
|
{
|
|
void Apply(CharacterAttributes attributes);
|
|
void Remove(CharacterAttributes attributes);
|
|
|
|
string Description { get; }
|
|
}
|
|
} |