RJW-Sexperience/RJWSexperience/IdeologyAddon/Ideology/PreceptDef_RequirementExtended.cs

13 lines
398 B
C#
Raw Normal View History

2022-04-15 16:46:29 +00:00
using RimWorld;
2021-09-24 15:14:02 +00:00
using System.Collections.Generic;
2022-04-15 16:46:29 +00:00
using System.Diagnostics.CodeAnalysis;
2021-09-24 15:14:02 +00:00
namespace RJWSexperience.Ideology
{
2022-04-15 16:46:29 +00:00
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>();
}
2021-09-24 15:14:02 +00:00
}