- Revised README.md for the Forge Client Example Addon to clarify its purpose as a template. - Enhanced MODULE_REFERENCE.md to categorize guides into Server and Extension guides and Client guides. - Created detailed usage guides for various client addons including Actor, Bank, CAD, Garage, Locker, Notifications, Organization, Phone, and Store. - Added a Client Common Usage Guide to outline shared browser UI bridge patterns. - Introduced a Client Main Usage Guide to define the foundational elements for client addons. - Established authoritative state notes and usage rules across new guides to ensure clarity on server ownership and client responsibilities.
19 lines
561 B
Markdown
19 lines
561 B
Markdown
# Forge Client Common
|
|
|
|
## Overview
|
|
The common addon contains shared client-side UI bridge helpers and common
|
|
configuration used by browser-based feature addons.
|
|
|
|
## Dependencies
|
|
- `forge_client_main`
|
|
|
|
## Main Components
|
|
- `fnc_initWebUIBridge.sqf` provides shared bridge behavior for web browser UI
|
|
controls.
|
|
- `WEB_UI_FRAMEWORK.md` documents the proposed shared browser runtime and event
|
|
API for Forge web UIs.
|
|
|
|
## Notes
|
|
Keep feature-specific behavior in the owning addon. Common should hold reusable
|
|
browser bridge patterns, not copied application logic.
|