AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SettingsMenu.h Source File

SettingsMenu.h

00001 #ifndef SETTINGSMENU_H
00002 #define SETTINGSMENU_H
00003 
00004 #include "../../board/Board.h"
00005 
00006 class GameSelector{
00007     Board* board;
00008     void print_up_down_arrows();
00009     void print_selection_arrow();
00010     void print_list();
00011     
00012     void go_down();
00013     void go_up();
00014     
00015     int start_position;
00016     int current_selection;
00017     int total_selections;
00018     
00019     //char* titles[7];
00020     Vector<Setting> settings;
00021     
00022     public:
00023     GameSelector(Board* board);
00024     void run();
00025 };
00026 
00027 #endif