mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-21 17:46:39 -05:00
10 lines
251 B
C
10 lines
251 B
C
#ifndef GUARD_POKEMON_TYPES_H
|
|
#define GUARD_POKEMON_TYPES_H
|
|
|
|
const char *GetUnformattedTypeString(u8 type);
|
|
const char * GetFormattedTypeString(u8 type);
|
|
u8 IsTypePhysical(u8 index);
|
|
u8 GetBestResistingType(u8 index);
|
|
|
|
#endif // GUARD_POKEMON_TYPES_H
|