1 2 3 4 5 6 7 8 9 10
#ifndef MENU_H #define MENU_H struct MenuItem { const char *text; u32 menuAction; // action?? }; #endif