Files
TSE/TSE_Core/src/interfaces/IWindow.cpp
2026-01-17 17:08:22 +01:00

23 lines
356 B
C++

#include "IWindow.hpp"
#include "Debug.hpp"
#include "LuaStateHandler.hpp"
#include "Time.hpp"
TSE::IWindow* TSE::IWindow::lastWindow = nullptr;
bool TSE::IWindow::BaseInit() const
{
LuaStateHandler::InitLuaState();
Debug::Init();
}
void TSE::IWindow::BaseUpdate() const
{
Time::Update();
}
TSE::IWindow::~IWindow()
{
Debug::Close();
}