mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
324bf68614
- Add categories to zeus modules to group them based on their functionality - Add new utility modules: 1. Toggle simulation 2. Update editable objects - Clean up some of the zeus module code (standardise function headers, camel case, etc.)
25 lines
514 B
Plaintext
25 lines
514 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Dummy function to include BIS script file.
|
|
* Used in initalisation of zeus attribute displays.
|
|
*
|
|
* Arguments:
|
|
* 0: UI event string <STRING>
|
|
* 1: UI event parameters <ARRAY>
|
|
* 2: Display class name <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* onLoad = "['onLoad',_this,'RscDisplayExample'] call ace_zeus_fnc_zeusAttributes"
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
TRACE_1("params",_this);
|
|
|
|
#include "\a3\ui_f_curator\UI\Displays\RscDisplayAttributes.sqf"
|