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

33 lines
442 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
2014-03-08 21:51:12 -04:30
static const int DEBUG = 0;
#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,
2014-03-08 21:19:02 -04:30
MN_COLOR,
VOID_COLOR,
IND_COLOR
};
2014-02-28 13:51:37 -04:30
#endif