Move HETag and HistoryEventArgsNamesCustom to separate files

This commit is contained in:
amevarashi 2022-06-19 18:01:05 +05:00
parent 22ad8c56a8
commit 60e1552b33
3 changed files with 23 additions and 16 deletions

View File

@ -0,0 +1,15 @@
using Verse;
namespace RJWSexperience.Ideology
{
public static class HETag
{
public const string Incestous = "[Incestuos]";
public const string BeenRaped = "[BeenRaped]";
public const string Rape = "[Rape]";
public const string Spouse = "[Spouse]";
public const string NotSpouse = "[NotSpouse]";
public static string Gender(Pawn pawn) => "[" + pawn.gender + "]";
}
}

View File

@ -0,0 +1,8 @@
namespace RJWSexperience.Ideology
{
public static class HistoryEventArgsNamesCustom
{
public const string Tag = "TAG";
public const string Partner = "PARTNER";
}
}

View File

@ -4,22 +4,6 @@ using Verse;
namespace RJWSexperience.Ideology
{
public static class HistoryEventArgsNamesCustom
{
public const string Tag = "TAG";
public const string Partner = "PARTNER";
}
public static class HETag
{
public const string Incestous = "[Incestuos]";
public const string BeenRaped = "[BeenRaped]";
public const string Rape = "[Rape]";
public const string Spouse = "[Spouse]";
public const string NotSpouse = "[NotSpouse]";
public static string Gender(Pawn pawn) => "[" + pawn.gender + "]";
}
public class PreceptComp_SelfTookThoughtTagged : PreceptComp_SelfTookMemoryThought
{