Delete Window.h

This commit is contained in:
Justin Scofield
2022-06-12 20:29:19 -04:00
committed by GitHub
parent 11ed3f4b42
commit ece315866d

View File

@@ -1,24 +0,0 @@
#ifndef YAZE_APPLICATION_CORE_WINDOW_H
#define YAZE_APPLICATION_CORE_WINDOW_H
#include <SDL2/SDL.h>
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