RJW-Sexperience/RJWSexperience/IdeologyAddon/Ideology/PreceptDef_RequirementExtended.cs
2022-04-15 21:46:29 +05:00

12 lines
398 B
C#

using RimWorld;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace RJWSexperience.Ideology
{
public class PreceptDef_RequirementExtended : PreceptDef
{
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
public List<MemeDef> requiredAllMemes = new List<MemeDef>();
}
}