Files
Archimedes/window/window.cpp
2024-10-02 00:49:38 -05:00

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