mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
15 lines
373 B
C
15 lines
373 B
C
//
|
|
// Created by Scott Norton on 9/6/17.
|
|
//
|
|
|
|
#ifndef POKEEMERALD_FIELD_PLAYER_AVATAR_H
|
|
#define POKEEMERALD_FIELD_PLAYER_AVATAR_H
|
|
|
|
void ClearPlayerAvatarInfo(void);
|
|
void SetPlayerAvatarExtraStateTransition(u8, u8);
|
|
u8 GetPlayerAvatarGenderByGraphicsId(u8);
|
|
bool8 TestPlayerAvatarFlags(u8);
|
|
void PlayerGetDestCoords(s16 *, s16 *);
|
|
|
|
#endif //POKEEMERALD_FIELD_PLAYER_AVATAR_H
|