diff options
Diffstat (limited to 'source/Asura.Editor/controls')
-rw-r--r-- | source/Asura.Editor/controls/radio_button.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/source/Asura.Editor/controls/radio_button.h b/source/Asura.Editor/controls/radio_button.h index e69de29..a9fc765 100644 --- a/source/Asura.Editor/controls/radio_button.h +++ b/source/Asura.Editor/controls/radio_button.h @@ -0,0 +1,23 @@ +#ifndef __ASURA_EDITOR_RADIO_BUTTON_H__ +#define __ASURA_EDITOR_RADIO_BUTTON_H__ + +namespace AsuraEditor +{ + namespace Controls + { + + class RadioButton + { + public: + + RadioButton(); + ~RadioButton(); + + + + }; + + } +} + +#endif |