]> ruin.nu Git - popboot.git/blob - node.h
it compiles
[popboot.git] / node.h
1 #ifndef __node_h__
2 #define __node_h__
3
4 #include <vector>
5 #include "action.h"
6
7 class Node {
8
9         public:
10                 Node(Action action);
11                 void addChild(Node* node);
12
13         protected:
14                 Action _action;
15                 std::vector<Node*> _children;
16 };
17
18 #endif