mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 23:18:36 -05:00
15 lines
243 B
C
15 lines
243 B
C
#ifndef POKEPLATINUM_CONSTANTS_FLAVOR_H
|
|
#define POKEPLATINUM_CONSTANTS_FLAVOR_H
|
|
|
|
enum {
|
|
FLAVOR_SPICY = 0,
|
|
FLAVOR_DRY,
|
|
FLAVOR_SWEET,
|
|
FLAVOR_BITTER,
|
|
FLAVOR_SOUR,
|
|
|
|
FLAVOR_MAX,
|
|
};
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_FLAVOR_H
|