Some checks failed
MANDATORY: Build project (Pflib Net) TeamCity build failed
16 lines
343 B
C#
16 lines
343 B
C#
namespace pflib_net.effects.implementation;
|
|
|
|
public readonly struct WeaknessEffect: IEffect
|
|
{
|
|
public WeaknessEffect(string tag, string reason, int amount)
|
|
{
|
|
Tag = tag;
|
|
Reason = reason;
|
|
Amount = amount;
|
|
}
|
|
|
|
public string Tag { get; }
|
|
public string Reason { get; }
|
|
public int Amount { get; }
|
|
|
|
} |