MENU_ITEM constants

This commit is contained in:
Justin Scofield
2022-07-25 11:26:56 -04:00
parent ee99166ef3
commit f0dad9a007

View File

@@ -22,6 +22,9 @@
ImGui::EndMenuBar(); \ 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 ushort = unsigned short;
using uint = unsigned int; using uint = unsigned int;
using uchar = unsigned char; using uchar = unsigned char;