summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Window/Window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Engine/Window/Window.cpp')
-rw-r--r--Source/Asura.Engine/Window/Window.cpp39
1 files changed, 37 insertions, 2 deletions
diff --git a/Source/Asura.Engine/Window/Window.cpp b/Source/Asura.Engine/Window/Window.cpp
index 5e800e0..6e9300f 100644
--- a/Source/Asura.Engine/Window/Window.cpp
+++ b/Source/Asura.Engine/Window/Window.cpp
@@ -5,9 +5,9 @@ namespace AsuraEngine
namespace Graphics
{
- Window::Window()
+ Window::Window(WindowStyle style)
{
-
+ //mWindowHandle = SDL_CreateWindow();
}
Window::~Window()
@@ -15,5 +15,40 @@ namespace AsuraEngine
}
+ SDL_Window* Window::GetSDLWindowHandle()
+ {
+ return mWindowHandle;
+ }
+
+ void Window::SetPosition(int x, int y)
+ {
+
+ }
+
+ void Window::SetTitle(const std::string& title)
+ {
+
+ }
+
+ void Window::Show()
+ {
+
+ }
+
+ void Window::Hide()
+ {
+
+ }
+
+ void Window::SetWindowStyle(WindowStyle style)
+ {
+
+ }
+
+ void Window::SwapRenderBuffer()
+ {
+
+ }
+
}
}