Files
Archimedes/modules/gui/window/window.cpp

32 lines
287 B
C++
Executable File

#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;
}