rename bigparent to parent

This commit is contained in:
2023-07-22 23:10:07 +02:00
parent 9511f9ed06
commit 5397fcc5c2
2 changed files with 4 additions and 3 deletions

View File

@@ -18,11 +18,12 @@ namespace Contact::Components {
Contact3 self;
};
// TODO: rename to SubOf?
struct BigParent {
// tier 1
struct Parent {
Contact3 parent;
};
// TODO: maybe rename to children
struct ParentOf {
std::vector<Contact3> subs;
};