mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
12 lines
398 B
C#
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>();
|
|
}
|
|
}
|