diff --git a/src/app/core/constants.h b/src/app/core/constants.h index 2b2895f0..4986be5a 100644 --- a/src/app/core/constants.h +++ b/src/app/core/constants.h @@ -22,6 +22,9 @@ ImGui::EndMenuBar(); \ } +#define MENU_ITEM(w) if (ImGui::MenuItem(w)) +#define MENU_ITEM2(w, v) if (ImGui::MenuItem(w, v)) + using ushort = unsigned short; using uint = unsigned int; using uchar = unsigned char;