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;
|
2022-06-05 11:23:42 +00:00
|
|
|
|
using Verse;
|
2021-09-24 15:14:02 +00:00
|
|
|
|
|
2022-06-19 13:26:35 +00:00
|
|
|
|
namespace RJWSexperience.Ideology.Precepts
|
2021-09-24 15:14:02 +00:00
|
|
|
|
{
|
2022-06-19 13:26:35 +00:00
|
|
|
|
public class DefExtension_MultipleMemesRequired : DefModExtension
|
2022-04-15 16:46:29 +00:00
|
|
|
|
{
|
|
|
|
|
[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
|
|
|
|
}
|