RJW-Sexperience/RJWSexperience/IdeologyAddon/Ideology/HistoryEvents/TwoPawnEventRule.cs

17 lines
605 B
C#
Raw Normal View History

using RimWorld;
using System.Diagnostics.CodeAnalysis;
using Verse;
namespace RJWSexperience.Ideology.HistoryEvents
{
2022-07-19 11:25:25 +00:00
public class TwoPawnEventRule
{
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
public HistoryEventDef historyEventDef;
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
2022-07-09 07:07:59 +00:00
public TwoPawnFilter filter;
2022-07-09 07:07:59 +00:00
public bool Applies(Pawn pawn, Pawn partner) => filter?.Applies(pawn, partner) == true;
}
}