add project start application script

This commit is contained in:
MihailRis
2025-11-09 18:26:36 +03:00
parent 05de043154
commit 87ff77a73f
6 changed files with 34 additions and 7 deletions
+2
View File
@@ -4,6 +4,7 @@
#include <vector>
#include <memory>
#include "interfaces/Process.hpp"
#include "interfaces/Serializable.hpp"
namespace scripting {
@@ -15,6 +16,7 @@ struct Project : Serializable {
std::string title;
std::vector<std::string> basePacks;
std::unique_ptr<scripting::IClientProjectScript> clientScript;
std::unique_ptr<Process> setupCoroutine;
~Project();