SUPER Space invader : Turbo edition DX - VS GOD 1.0.0
A simple space invader ripoff
menu.h
Go to the documentation of this file.
1
12#ifndef GUARD_MENU_H
13#define GUARD_MENU_H
14
15#include<vector>
16#include<string>
17
22struct Menu{
26 vector<string> entries;
27
31 unsigned selectedEntry = 0;
32
36 nsGraphics::RGBAcolor selectedColor;
40 nsGraphics::RGBAcolor unSelectedColor;
41};
42
43#endif
menu stuct
Definition: menu.h:22
nsGraphics::RGBAcolor selectedColor
color of currently selected menu option
Definition: menu.h:36
nsGraphics::RGBAcolor unSelectedColor
color of unelected menu option
Definition: menu.h:40
unsigned selectedEntry
index of currently selected menu option
Definition: menu.h:31
vector< string > entries
list of all menu options
Definition: menu.h:26