Added base parts

This commit is contained in:
Samuele Lorefice
2024-12-31 03:05:17 +01:00
parent 9a1eed7f80
commit abfde63278
19 changed files with 158 additions and 0 deletions

7
Parts/Base/Mouth.cs Normal file
View File

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