couch/core/Node.cpp
2021-01-14 11:52:01 -06:00

17 lines
256 B
C++

#include "Node.h"
Node *Node::root = {new Node()};
Node *Node::GetRoot() {
return root;
}
bool Node::IsDrawable() const {
return false;
}
bool Node::IsTransformable() const {
return false;
}
void NodeList::Append(Node *node) {
push_back(node);
}