- Treballant en el menu del joc
This commit is contained in:
14
ui_menu.h
Normal file
14
ui_menu.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
namespace ui
|
||||
{
|
||||
namespace menu
|
||||
{
|
||||
void init();
|
||||
void show();
|
||||
const int addsubmenu(const char *label);
|
||||
void addoption(int menu, const char *label, int(*callback)(int));
|
||||
void addbooloption(int menu, const char *label, bool default_value, int(*callback)(int));
|
||||
void addseparator(int menu);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user