]> ruin.nu Git - popboot.git/blobdiff - node.h
added node class
[popboot.git] / node.h
diff --git a/node.h b/node.h
new file mode 100644 (file)
index 0000000..27a95c4
--- /dev/null
+++ b/node.h
@@ -0,0 +1,13 @@
+#ifndef __node_h__
+#define __node_h__
+
+#include <vector>
+
+class Node {
+
+       protected:
+               Action action;
+               std::vector<Node*> children;
+};
+
+#endif