Files

19 lines
437 B
C#
Raw Permalink Normal View History

2026-06-04 22:14:21 +03:00
using System;
[Serializable]
public struct StatModifier
{
public StatType statType;
public ModifierType modifierType;
public float value;
public string sourceId;
public StatModifier(StatType statType, ModifierType modifierType, float value, string sourceId = "")
{
this.statType = statType;
this.modifierType = modifierType;
this.value = value;
this.sourceId = sourceId;
}
}