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; } } }