mirror of
https://gitgud.io/ll.mirrors/sizedapparel.git
synced 2024-08-15 00:43:40 +00:00
Mirror of 1.4.22 from Lovers Lab
This commit is contained in:
parent
5d0da3bc88
commit
b501ddfb0f
1119 changed files with 12505 additions and 2543 deletions
39
source/SizedApparel/Patch-Menstruation.cs
Normal file
39
source/SizedApparel/Patch-Menstruation.cs
Normal file
|
@ -0,0 +1,39 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using UnityEngine;
|
||||
using Verse;
|
||||
using RJW_Menstruation;
|
||||
|
||||
namespace SizedApparel
|
||||
{
|
||||
public class Patch_Menstruation
|
||||
{
|
||||
|
||||
public static Color? GetNippleColor(Hediff breastHediff)
|
||||
{
|
||||
var breastcomp = breastHediff.TryGetComp<HediffComp_Breast>();
|
||||
if (breastcomp == null)
|
||||
return null;
|
||||
return breastcomp.NippleColor;
|
||||
}
|
||||
|
||||
public static float? GetNippleSize(Hediff breastHediff)
|
||||
{
|
||||
var breastcomp = breastHediff.TryGetComp<HediffComp_Breast>();
|
||||
if (breastcomp == null)
|
||||
return null;
|
||||
return breastcomp.NippleSize;
|
||||
}
|
||||
|
||||
public static float? GetAreolaSize(Hediff breastHediff)
|
||||
{
|
||||
var breastcomp = breastHediff.TryGetComp<HediffComp_Breast>();
|
||||
if (breastcomp == null)
|
||||
return null;
|
||||
return breastcomp.AreolaSize;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue