From ece315866dd5b77f7baa942c6b9da874afc1ec02 Mon Sep 17 00:00:00 2001 From: Justin Scofield <47263509+scawful@users.noreply.github.com> Date: Sun, 12 Jun 2022 20:29:19 -0400 Subject: [PATCH] Delete Window.h --- src/Application/Core/Window.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 src/Application/Core/Window.h diff --git a/src/Application/Core/Window.h b/src/Application/Core/Window.h deleted file mode 100644 index 3bc9d7c0..00000000 --- a/src/Application/Core/Window.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef YAZE_APPLICATION_CORE_WINDOW_H -#define YAZE_APPLICATION_CORE_WINDOW_H - -#include - -namespace yaze { -namespace Application { -namespace Core { - -class Window { - public: - void Create(); - void Destroy(); - SDL_Window* Get(); - - private: - SDL_Window* window = nullptr; -}; - -} // namespace Core -} // namespace Application -} // namespace yaze - -#endif \ No newline at end of file