test debugger commands

This commit is contained in:
MihailRis
2025-10-06 01:54:35 +03:00
parent 44bf4a2f9e
commit 3fef284a02
4 changed files with 133 additions and 9 deletions
+6
View File
@@ -282,6 +282,12 @@ void Engine::postUpdate() {
network->update();
postRunnables.run();
scripting::process_post_runnables();
if (debuggingServer) {
if (!debuggingServer->update()) {
debuggingServer.reset();
}
}
}
void Engine::updateFrontend() {
+1 -1
View File
@@ -51,7 +51,7 @@ struct CoreParameters {
std::filesystem::path userFolder = ".";
std::filesystem::path scriptFile;
std::filesystem::path projectFolder;
std::string debugServerString;
std::string debugServerString = "tcp:9030";
int tps = 20;
};