-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
479 additions
and
126 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
;; Menu list | ||
%define MENU_MAIN 0 | ||
%define MENU_MULTIPLAYER 1 | ||
%define MENU_SELECT_MAP_SOLO 2 | ||
%define MENU_MULTIPLAYER_CONNECT 3 | ||
%define MENU_MULTIPLAYER_HOST 4 | ||
%define NB_MENUS 5 | ||
|
||
;; MENU_MAIN buttons | ||
%define BUTTON_PLAY 0 | ||
%define BUTTON_MULTIPLAYER 1 | ||
%define BUTTON_EXIT 2 | ||
%define NB_BUTTON_MAIN 3 | ||
|
||
;; MENU_MULTIPLAYER buttons | ||
%define BUTTON_MP_HOST 0 | ||
%define BUTTON_MP_CONNECT 1 | ||
%define BUTTON_MP_BACK 2 | ||
%define NB_BUTTON_MULTIPLAYER 3 | ||
|
||
;; MENU_SELECT_MAP_SOLO buttons | ||
%define BUTTON_SM_SOLO_MAP 0 | ||
%define BUTTON_SM_SOLO_BACK 1 | ||
%define NB_BUTTON_SELECT_MAP_SOLO 2 | ||
|
||
;; MENU_MULTIPLAYER_CONNECT buttons | ||
%define BUTTON_MP_CO_CONNECT 0 | ||
%define BUTTON_MP_CO_BACK 1 | ||
%define NB_BUTTON_MULTIPLAYER_CONNECT 2 | ||
|
||
;; MENU_MULTIPLAYER_HOST buttons | ||
%define BUTTON_MP_HOST_MAP 0 | ||
%define BUTTON_MP_HOST_BACK 1 | ||
%define NB_BUTTON_MULTIPLAYER_HOST 2 |
Oops, something went wrong.