This commit is contained in:
2025-05-26 17:44:50 +03:00
parent 7f054e2904
commit 60fa98e240
24 changed files with 756 additions and 111 deletions

View File

@@ -7,6 +7,7 @@
#include "engine.h"
#include "baseentity.h"
#include "server.h"
#include "physics.h"
#ifdef __linux
#include "signal.h"
@@ -48,6 +49,8 @@ void IEngine_Signal(int sig)
_exit(0);
};
funnyphysics *px;
void IEngine::Init()
{
/* trap signals */
@@ -66,6 +69,7 @@ void IEngine::Init()
IFileSystem::InitFilesystem();
IVideo::Init();
px = px_init();
IServer::LoadGame("funnygame");
};