Files
WaifuCellar/Parts/Human/HumanVagina.cs
Samuele Lorefice 3380ad963c Added Human parts
2024-12-31 04:34:04 +01:00

13 lines
509 B
C#

using WaifuCellar.Parts.Base;
namespace WaifuCellar.Parts.Human;
public sealed class HumanVagina : Vagina {
[Attribute] public int ClitorisSensitivity { get; set; }
[Attribute] public float DepthTolerance { get; set; }
[Trait] public float DepthLimit { get; set; }
[Attribute] public float GirthTolerance { get; set; }
[Trait] public float GirthLimit { get; set; }
[Attribute] public float GSpotSensitivity { get; set; }
[Attribute] public float CervixSensitivity { get; set; }
}