nuclide/Source/Menu-FN/w_combobox.cpp

25 lines
304 B
C++
Raw Normal View History

2018-12-27 22:53:24 +00:00
/***
*
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
*
* See the file LICENSE attached with the sources for usage details.
*
****/
class CComboBox:CWidget
{
void() CComboBox;
virtual void() Draw;
};
void CComboBox::CComboBox(void)
{
}
void CComboBox::Draw(void)
{
}