diff options
Diffstat (limited to 'src/app.h')
| -rw-r--r-- | src/app.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/app.h b/src/app.h new file mode 100644 index 0000000..cc45fbc --- /dev/null +++ b/src/app.h @@ -0,0 +1,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
\ No newline at end of file |
