SuperSpaceInvaderTurboApoca.../headers/menu.h
2022-01-06 15:20:37 +01:00

13 lines
241 B
C

#ifndef GUARD_MENU_H
#define GUARD_MENU_H
#include"vector"
#include"string"
struct Menu{
vector<string> entries;
size_t currentValue = 0;
nsGraphics::RGBAcolor selectedColor;
nsGraphics::RGBAcolor unSelectedColor;
};
#endif