mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 13:09:56 +00:00
14 lines
380 B
C
14 lines
380 B
C
#ifndef GUARD_CONSTANTS_EVOLUTION_STATUS_H
|
|
#define GUARD_CONSTANTS_EVOLUTION_STATUS_H
|
|
|
|
|
|
#define EVOLUTION_GOOD 1
|
|
#define EVOLUTION_LACK_LEVEL 1 << 1
|
|
#define EVOLUTION_NO_MORE 1 << 2
|
|
#define EVOLUTION_LACK_ITEM 1 << 3
|
|
#define EVOLUTION_LACK_IQ 1 << 4
|
|
#define EVOLUTION_LACK_FRIEND_AREA 1 << 5
|
|
#define EVOLUTION_LACK_ROOM 1 << 6
|
|
|
|
#endif // GUARD_CONSTANTS_EVOLUTION_STATUS_H
|