#pragma once #include "checkbox.qh" void RadioButton_Click(entity me, entity other); CLASS(RadioButton, CheckBox) METHOD(RadioButton, configureRadioButton, void(entity, string, float, string, float, float)); ATTRIB(RadioButton, checked, float, 0); ATTRIB(RadioButton, group, float, 0); ATTRIB(RadioButton, allowDeselect, float, 0); ATTRIB(RadioButton, onClick, void(entity, entity), RadioButton_Click); ENDCLASS(RadioButton)