made first window work

This commit is contained in:
2026-01-17 16:36:56 +01:00
parent 53c7d564d7
commit 2611d3539e
4 changed files with 942 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
#include "IWindow.hpp"
#include "Debug.hpp"
#include "LuaStateHandler.hpp"
#include "version.h"
TSE::IWindow* TSE::IWindow::lastWindow = nullptr;
@@ -8,6 +9,8 @@ bool TSE::IWindow::BaseInit() const
{
LuaStateHandler::InitLuaState();
Debug::Init();
Debug::Log("TSE:" + TSE_VERSION_STRING);
return true;
}
TSE::IWindow::~IWindow()