Added Human parts

This commit is contained in:
Samuele Lorefice
2024-12-31 04:06:14 +01:00
parent abfde63278
commit 3380ad963c
36 changed files with 266 additions and 35 deletions

10
Parts/Human/HumanMouth.cs Normal file
View File

@@ -0,0 +1,10 @@
using WaifuCellar.Parts.Base;
namespace WaifuCellar.Parts.Human;
public sealed class HumanMouth(Part? parentPart) : Mouth {
public override Part? ParentPart { get; set; } = parentPart;
[Attribute] public float GirthTolerance { get; set; }
[Attribute] public float DepthTolerance { get; set; }
}