mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
31 lines
767 B
Plaintext
31 lines
767 B
Plaintext
/*
|
|
Author: Raimonds Virtoss - EpochMod.com
|
|
|
|
Contributors:
|
|
|
|
Description: Activates code block within switch when certain radio is used from Favorites bar
|
|
|
|
Licence:
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
Github:
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/gui/scripts/Epoch_3DctrlSpin.sqf
|
|
|
|
Usage: None by default, create your own actions here if you want
|
|
*/
|
|
|
|
switch _this do {
|
|
case "EpochRadio0":{};
|
|
case "EpochRadio1":{};
|
|
case "EpochRadio2":{};
|
|
case "EpochRadio3":{};
|
|
case "EpochRadio4":{};
|
|
case "EpochRadio5":{};
|
|
case "EpochRadio6":{};
|
|
case "EpochRadio7":{};
|
|
case "EpochRadio8":{};
|
|
case "EpochRadio9":{};
|
|
default {};
|
|
};
|
|
|
|
true |