23 lines
527 B
C
23 lines
527 B
C
#pragma once
|
|
#ifndef STATE_CONSTS_H
|
|
#define STATE_CONSTS_H
|
|
|
|
static const int BAR_COLOR = 1;
|
|
static const int BSC_COLOR = 2;
|
|
static const int HLT_COLOR = 3;
|
|
static const int OFF_COLOR = 4;
|
|
static const int DIM_COLOR = 5;
|
|
static const int LIT_COLOR = 6;
|
|
static const int GUI_COLOR = 7;
|
|
static const int EMP_COLOR = 8;
|
|
|
|
static const int INTRO_STATE = 0;
|
|
static const int MENU_STATE = 1;
|
|
static const int LOAD_STATE = 2;
|
|
static const int SCORE_STATE = 3;
|
|
static const int GAME_STATE = 4;
|
|
|
|
static const int QUIT_STATE = -1;
|
|
|
|
#endif
|