pokeplatinum/include/constants/string.h

19 lines
585 B
C

#ifndef POKEPLATINUM_CONSTANTS_STRING_H
#define POKEPLATINUM_CONSTANTS_STRING_H
#define MON_NAME_LEN 10
#define TRAINER_NAME_LEN 7
#define TABLET_NAME_LEN 10
#define MOVE_NAME_LEN 16
#define UNION_GROUP_NAME_LEN 7
#define BOX_NAME_LEN 8
// Control codes for how to pad numeric strings.
enum PaddingMode {
PADDING_MODE_NONE = 0, // Do not pad the string. Effectively left-justification.
PADDING_MODE_SPACES, // Right-justify the string, padding with spaces.
PADDING_MODE_ZEROES, // Right-justify the string, padding with zeroes.
};
#endif