mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
19 lines
333 B
C#
19 lines
333 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using RimWorld;
|
|
using Verse;
|
|
|
|
|
|
|
|
namespace RJWSexperience.Ideology
|
|
{
|
|
public class PreceptDef_RequirementExtended : PreceptDef
|
|
{
|
|
public List<MemeDef> requiredAllMemes = new List<MemeDef>();
|
|
}
|
|
|
|
|
|
}
|