]> ruin.nu Git - popboot.git/blob - node.cpp
some changes
[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 }