mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
10 lines
174 B
C++
10 lines
174 B
C++
#include "tool_box_node.h"
|
|
|
|
const char * ToolBoxNode::text() const {
|
|
return m_text;
|
|
}
|
|
|
|
const Node * ToolBoxNode::children(int index) const {
|
|
return &m_children[index];
|
|
}
|