- add common ForgeWebUI runtime, site loader, and SQF WebUI bridge base declarations - migrate org and store web UIs to src-driven bundles and new bridge/bootstrap flow - update addon configs/prep hooks and document the shared CT_WEBBROWSER framework
23 lines
514 B
C++
23 lines
514 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
author = AUTHOR;
|
|
authors[] = {"J.Schmidt"};
|
|
url = ECSTRING(main,url);
|
|
name = COMPONENT_NAME;
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {
|
|
"forge_client_common",
|
|
"forge_client_main"
|
|
};
|
|
units[] = {};
|
|
weapons[] = {};
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "ui\RscCommon.hpp"
|
|
#include "ui\RscStore.hpp"
|