Menudo puto lio de renamar coses, a vore si tot va quedant al lloc que els structs i els enums estan revolant i duplicats per tots llocs
This commit is contained in:
@@ -3,31 +3,31 @@
|
||||
namespace section
|
||||
{
|
||||
// Secciones del programa
|
||||
enum name_e
|
||||
enum class Name
|
||||
{
|
||||
NAME_INIT = 0,
|
||||
NAME_LOGO = 1,
|
||||
NAME_INTRO = 2,
|
||||
NAME_TITLE = 3,
|
||||
NAME_GAME = 4,
|
||||
NAME_HI_SCORE_TABLE = 5,
|
||||
NAME_GAME_DEMO = 6,
|
||||
NAME_INSTRUCTIONS = 7,
|
||||
NAME_QUIT = 8,
|
||||
INIT = 0,
|
||||
LOGO = 1,
|
||||
INTRO = 2,
|
||||
TITLE = 3,
|
||||
GAME = 4,
|
||||
HI_SCORE_TABLE = 5,
|
||||
GAME_DEMO = 6,
|
||||
INSTRUCTIONS = 7,
|
||||
QUIT = 8,
|
||||
};
|
||||
|
||||
// Opciones para la sección
|
||||
enum options_e
|
||||
enum class Options
|
||||
{
|
||||
OPTIONS_GAME_PLAY_1P = 0,
|
||||
OPTIONS_GAME_PLAY_2P = 1,
|
||||
OPTIONS_TITLE_1 = 2,
|
||||
OPTIONS_TITLE_2 = 3,
|
||||
OPTIONS_QUIT_NORMAL = 4,
|
||||
OPTIONS_QUIT_SHUTDOWN = 5,
|
||||
OPTIONS_NULL = 6,
|
||||
GAME_PLAY_1P = 0,
|
||||
GAME_PLAY_2P = 1,
|
||||
TITLE_1 = 2,
|
||||
TITLE_2 = 3,
|
||||
QUIT_NORMAL = 4,
|
||||
QUIT_SHUTDOWN = 5,
|
||||
NONE = 6,
|
||||
};
|
||||
|
||||
extern name_e name;
|
||||
extern options_e options;
|
||||
extern Name name;
|
||||
extern Options options;
|
||||
}
|
||||
Reference in New Issue
Block a user