/*
	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