[#14] rozbudowa stats + dodanie modyfikatorów
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user