rename bigparent to parent

This commit is contained in:
Green Sky 2023-07-22 23:10:07 +02:00
parent 9511f9ed06
commit 5397fcc5c2
No known key found for this signature in database
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;
};

View File

@ -16,7 +16,7 @@ DEFINE_COMP_ID(Contact::Components::TagSelfWeak)
DEFINE_COMP_ID(Contact::Components::TagSelfStrong)
DEFINE_COMP_ID(Contact::Components::TagBig)
DEFINE_COMP_ID(Contact::Components::Self)
DEFINE_COMP_ID(Contact::Components::BigParent)
DEFINE_COMP_ID(Contact::Components::Parent)
DEFINE_COMP_ID(Contact::Components::ParentOf)
DEFINE_COMP_ID(Contact::Components::ContactModel)
DEFINE_COMP_ID(Contact::Components::Name)