Begin Repo

This commit is contained in:
2024-08-10 21:20:28 -05:00
commit 08115f90ce
41 changed files with 19581 additions and 0 deletions

31
window/window.cpp Normal file
View 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;
}