Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (16 sloc)
341 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * File: menu.h | |
| * Author: KRIK | |
| * | |
| * Created on 8 Èþëü 2009 ã., 10:37 | |
| */ | |
| #ifndef _MENU_H | |
| #define _MENU_H | |
| #define ITEM_ONE_PLAYER 0 | |
| #define ITEM_TWO_PLAYER 1 | |
| #define ITEM_MAP_EDITOR 2 | |
| #define ITEM_MAP_OPTION 3 | |
| void startMenu(s8 do_scroll); | |
| void modeMenu(); | |
| s8 menuGetSelectedItem(); | |
| #endif /* _MENU_H */ | |