- Add desktop-style title bar shell and viewport locking for bank/org UIs - Redesign notification HUD visuals and behavior (timers, persistence, exposed JS API) - Register and play a new notification sound via `CfgSounds` on client events
23 lines
514 B
C++
23 lines
514 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
author = AUTHOR;
|
|
authors[] = {"IDSolutions"};
|
|
url = ECSTRING(main,url);
|
|
name = COMPONENT_NAME;
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {
|
|
"forge_client_main"
|
|
};
|
|
units[] = {};
|
|
weapons[] = {};
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgSounds.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "ui\RscCommon.hpp"
|
|
#include "ui\RscNotifications.hpp"
|