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

View File

@@ -1,7 +1,7 @@
namespace WaifuCellar.Parts.Base;
public class Penis : Part {
public override List<IBuff> Buffs { get; set; } = new();
public override List<IBuff> Buffs { get; set; } = [];
public override Part? ParentPart { get; set; }
public override List<Part> AttachedParts { get; set; } = new();
public override List<Part> AttachedParts { get; } = [];
}