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

8
Part.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace WaifuCellar;
public abstract class Part {
public abstract List<IBuff> Buffs { get; set; }
public abstract Part? ParentPart { get; set; }
//Also includes limbs
public abstract List<Part> AttachedParts { get; set; }
}