From 2022eb33c5c68f459b61a687a777b5443315c760 Mon Sep 17 00:00:00 2001 From: Maurice Makaay Date: Sun, 19 Jul 2020 16:50:59 +0200 Subject: [PATCH] Got rid of the now useless main.h #include. --- src/main.cpp | 2 +- src/main.h | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 src/main.h diff --git a/src/main.cpp b/src/main.cpp index f544580..36a0247 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,4 @@ -#include "main.h" +#include "App/App.h" Dough::Logger logger("MAIN"); diff --git a/src/main.h b/src/main.h deleted file mode 100644 index f3738ff..0000000 --- a/src/main.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef DOUGHBOY_H -#define DOUGHBOY_H - -#include -#include "App/App.h" -#include "App/AppStateController.h" -#include "UI/Button.h" -#include "UI/UI.h" -#include "config.h" - -#endif