Malachy Byrne 327feab7d8
Some checks failed
MANDATORY: Build project (Pflib Net) TeamCity build failed
Add basic effects and condition interface
2024-06-28 20:08:14 +01:00

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; }
}