restructure project for dynamic linking
This commit is contained in:
31
modules/gui/window/window.cpp
Executable file
31
modules/gui/window/window.cpp
Executable file
@@ -0,0 +1,31 @@
|
||||
#include "window.h"
|
||||
|
||||
Window::Window()
|
||||
{
|
||||
}
|
||||
|
||||
Window::~Window()
|
||||
{
|
||||
}
|
||||
|
||||
void Window::init(std::string, int, int)
|
||||
{
|
||||
}
|
||||
|
||||
void Window::shutdown()
|
||||
{
|
||||
}
|
||||
|
||||
void Window::getSize()
|
||||
{
|
||||
}
|
||||
|
||||
const Event *Window::pollEvents()
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
const Event *Window::createEvent()
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
Reference in New Issue
Block a user