]> ruin.nu Git - popboot.git/blob - node.h
added node class
[popboot.git] / node.h
1 #ifndef __node_h__
2 #define __node_h__
3
4 #include <vector>
5
6 class Node {
7
8         protected:
9                 Action action;
10                 std::vector<Node*> children;
11 };
12
13 #endif