Files
Not-so-Rogue-like/include/constants.h

30 lines
389 B
C
Raw Normal View History

/**
* Copyright (c) 2014, Miguel Angel Astor Romero. All rights reserved.
* See the file LICENSE for more details.
*/
2014-02-28 13:51:37 -04:30
#ifndef STATE_CONSTS_H
#define STATE_CONSTS_H
#define F_SEP "/"
2014-02-28 13:51:37 -04:30
enum COLORS {
2014-03-03 21:54:15 -04:30
BAR_COLOR = 1,
BSC_COLOR,
HLT_COLOR,
OFF_COLOR,
DIM_COLOR,
LIT_COLOR,
GUI_COLOR,
EMP_COLOR,
DW_COLOR,
SW_COLOR,
SN_COLOR,
GR_COLOR,
FR_COLOR,
HL_COLOR,
MN_COLOR
};
2014-02-28 13:51:37 -04:30
#endif