Files
dilemmaker/source/menu.h
Raimon Zamora 8028d0533b - [NEW] menu i menu::popup
- [WIP] toolbar
- [WIP] treeview
2025-11-17 22:31:48 +01:00

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();
}
}