15 lines
202 B
C++
15 lines
202 B
C++
#pragma once
|
|
|
|
namespace menu
|
|
{
|
|
void start();
|
|
bool option(const char* label);
|
|
|
|
namespace popup
|
|
{
|
|
void start();
|
|
bool option(const char* label);
|
|
void end();
|
|
}
|
|
}
|