Add LunaSVG

This commit is contained in:
Isuru Samarathunga
2025-10-18 09:26:01 +05:30
parent 4597d0a4aa
commit 57bc80f4f9
187 changed files with 12435 additions and 24 deletions

View File

@ -60,6 +60,7 @@ namespace ia::iae
VOID AddChild(IN RefPtr<Node2D> node)
{
node->m_parent = this;
m_children.pushBack(node);
}
@ -180,7 +181,7 @@ namespace ia::iae
}
protected:
RefPtr<Node2D> m_parent{};
Node2D* m_parent{};
Vector<IComponent *> m_components;
Vector<RefPtr<Node2D>> m_children{};