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