This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/PowderToySDLCommon.cpp
Tamás Bálint Misius bfe7d765c4
Emscripten: Disable hopefully all ways to quit
Also fix FPS going nuts when recreating the window by setting it again every time.
2023-08-22 00:26:33 +02:00

19 lines
214 B
C++

#include "PowderToySDL.h"
#include "gui/interface/Engine.h"
void MainLoop()
{
while (ui::Engine::Ref().Running())
{
EngineProcess();
}
}
void SetFpsLimit(FpsLimit newFpsLimit)
{
}
void UpdateFpsLimit()
{
}