Jacob Schmidt 6eb6ac79d1 Revamp UI chrome and add notification sound alerts
- 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
2026-03-09 20:59:02 -05:00

10 lines
196 B
C++

class CfgSounds {
sounds[] += {QGVAR(notify)};
class GVAR(notify) {
name = QGVAR(notify);
sound[] = {QPATHTOF2(sounds\notify.ogg), 1, 1};
titles[] = {};
};
};