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

13 lines
426 B
C#
Raw Normal View History

using System.Collections.Generic;
2022-07-03 15:04:28 +00:00
using System.Diagnostics.CodeAnalysis;
using Verse;
namespace RJWSexperience.Ideology.HistoryEvents
2022-07-03 15:04:28 +00:00
{
2022-07-19 11:25:25 +00:00
public class DefExtension_EventOverrides : DefModExtension
2022-07-03 15:04:28 +00:00
{
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
2022-07-19 11:25:25 +00:00
public List<TwoPawnEventRule> overrideRules = new List<TwoPawnEventRule>();
2022-07-03 15:04:28 +00:00
}
}