16 lines
161 B
C++
16 lines
161 B
C++
#ifndef TITLEMENU
|
|
#define TITLEMENU
|
|
|
|
class TitleMenu
|
|
{
|
|
public:
|
|
TitleMenu()
|
|
{
|
|
|
|
}
|
|
|
|
void renderGUI();
|
|
};
|
|
|
|
#endif
|