update project script methods, replace project script with project client script

This commit is contained in:
MihailRis
2025-08-18 21:20:18 +03:00
parent dc0e388eec
commit c8d760e83e
6 changed files with 92 additions and 88 deletions
+2 -2
View File
@@ -7,14 +7,14 @@
#include "interfaces/Serializable.hpp"
namespace scripting {
class IProjectScript;
class IClientProjectScript;
}
struct Project : Serializable {
std::string name;
std::string title;
std::vector<std::string> basePacks;
std::unique_ptr<scripting::IProjectScript> script;
std::unique_ptr<scripting::IClientProjectScript> clientScript;
~Project();