18 lines
456 B
C#
18 lines
456 B
C#
using RPGCore.Core.Objects;
|
|
|
|
namespace RPGCore.Stats.ObjectModules.StatsObjectModule
|
|
{
|
|
public class StatModifier
|
|
{
|
|
public readonly BaseObject source;
|
|
public readonly int value;
|
|
public readonly StatModifierType type;
|
|
|
|
public StatModifier(BaseObject source, int value, StatModifierType type)
|
|
{
|
|
this.source = source;
|
|
this.value = value;
|
|
this.type = type;
|
|
}
|
|
}
|
|
} |