Platform/PlatformApplication: Adding createWindow()
This commit is contained in:
parent
2ac3b5b8cc
commit
a8f65e54ac
5 changed files with 17 additions and 6 deletions
|
|
@ -1,4 +1,5 @@
|
|||
|
||||
#include "Win32Window.h"
|
||||
#include "Win32Application.h"
|
||||
|
||||
namespace sp {
|
||||
|
|
@ -11,11 +12,10 @@ void Win32Application::shutdown()
|
|||
{
|
||||
}
|
||||
|
||||
/*
|
||||
PlatformDisplay& Win32Application::getDisplay()
|
||||
PlatformWindow* Win32Application::createWindow(Window* window)
|
||||
{
|
||||
return m_display;
|
||||
} */
|
||||
return new Win32Window(window);
|
||||
}
|
||||
|
||||
PlatformInput& Win32Application::getInput()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue