]> ruin.nu Git - popboot.git/blob - node.cpp
a9cb4539431d6d1f959339f9e042d867ba68fb74
[popboot.git] / node.cpp
1 #include "node.h"
2
3 Node::Node(Action action, std::vector<Node&> children){
4         _action = action;
5         _children = children;
6 }