mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 12:35:23 -05:00
16 lines
382 B
C
16 lines
382 B
C
#ifndef GUARD_OW_SYNCHRONIZE_H
|
|
#define GUARD_OW_SYNCHRONIZE_H
|
|
|
|
enum GeneratedMonOrigin
|
|
{
|
|
WILDMON_ORIGIN,
|
|
STATIC_WILDMON_ORIGIN,
|
|
ROAMER_ORIGIN,
|
|
GIFTMON_ORIGIN
|
|
};
|
|
|
|
enum Nature GetSynchronizedNature(enum GeneratedMonOrigin origin, enum Species species);
|
|
u32 GetSynchronizedGender(enum GeneratedMonOrigin origin, enum Species species);
|
|
|
|
#endif // GUARD_OW_SYNCHRONIZE_H
|