blob: cc45fbcac9cbd0e4b8cf2b3f2019a7b6f2a53ae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef H_MAZE_APP
#define H_MAZE_APP
#include "maze.h"
#include "config.h"
#include "args.h"
struct app
{
struct maze *maze;
struct args *args;
struct conf *conf;
};
#endif
|