mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
Move HETag and HistoryEventArgsNamesCustom to separate files
This commit is contained in:
parent
22ad8c56a8
commit
60e1552b33
3 changed files with 23 additions and 16 deletions
15
RJWSexperience/IdeologyAddon/Ideology/HETag.cs
Normal file
15
RJWSexperience/IdeologyAddon/Ideology/HETag.cs
Normal 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 + "]";
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
namespace RJWSexperience.Ideology
|
||||
{
|
||||
public static class HistoryEventArgsNamesCustom
|
||||
{
|
||||
public const string Tag = "TAG";
|
||||
public const string Partner = "PARTNER";
|
||||
}
|
||||
}
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue