first commit

This commit is contained in:
2026-06-04 22:14:21 +03:00
commit 677f9b8090
139 changed files with 15981 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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;
}
}