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