[#14] rozbudowa stats + dodanie modyfikatorów

This commit is contained in:
2026-06-30 20:28:51 +02:00
parent 86b4a8a93f
commit 8326c4b279
33 changed files with 444 additions and 129 deletions
@@ -0,0 +1,18 @@
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;
}
}
}