spacebox/src/Node.hpp

26 lines
282 B
C++

#ifndef Node_h_
#define Node_h_
#include <iostream>
#include "filesystem.hpp"
struct Game;
struct Configuration;
struct Node
{
Node *parent = NULL;
Node();
Node(Node*);
Game *get_root();
Configuration* get_configuration();
};
#include "Game.hpp"
#endif