mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
10 lines
173 B
C++
10 lines
173 B
C++
#include "toolbox_node.h"
|
|
|
|
const char * ToolboxNode::text() const {
|
|
return m_text;
|
|
}
|
|
|
|
const Node * ToolboxNode::children(int index) const {
|
|
return &m_children[index];
|
|
}
|