diff options
author | chai <chaifix@163.com> | 2019-03-04 08:59:21 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-03-04 08:59:21 +0800 |
commit | c19a282e10f51ddd50d198b903f8fbd5a2238b62 (patch) | |
tree | 407cfda6ec917a86135153915a924e38f76c0553 /Source/Asura.Engine/Window/Window.cpp | |
parent | e1472104af014df0e8598f1a3f9b2496b683d6bb (diff) |
*misc
Diffstat (limited to 'Source/Asura.Engine/Window/Window.cpp')
-rw-r--r-- | Source/Asura.Engine/Window/Window.cpp | 39 |
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() + { + + } + } } |