mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-10 22:18:41 -05:00
42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
#ifndef GUARD_FIELD_PLAYER_AVATAR_H
|
|
#define GUARD_FIELD_PLAYER_AVATAR_H
|
|
|
|
#include "global.h"
|
|
|
|
void ClearPlayerAvatarInfo(void);
|
|
void SetPlayerAvatarExtraStateTransition(u8, u8);
|
|
u8 GetPlayerAvatarGenderByGraphicsId(u8);
|
|
bool8 TestPlayerAvatarFlags(u8);
|
|
void PlayerGetDestCoords(s16 *, s16 *);
|
|
u8 GetPlayerFacingDirection(void);
|
|
u8 player_get_direction_upper_nybble(void);
|
|
u8 player_get_x22(void);
|
|
|
|
void sub_808D074(u8);
|
|
void sub_805C270(void);
|
|
void sub_805C780(void);
|
|
void GetXYCoordsOneStepInFrontOfPlayer(s16 *xPtr, s16 *yPtr);
|
|
u8 GetPlayerAvatarGraphicsIdByStateId(u8);
|
|
void SetPlayerAvatarStateMask(u8 mask);
|
|
void sub_805D9C4(struct Sprite *sprite);
|
|
void sub_805D154(u8 direction);
|
|
void sub_805DAE4(u8 direction);
|
|
void SetPlayerAvatarTransitionFlags(u16 a);
|
|
bool8 IsPlayerFacingSurfableFishableWater(void);
|
|
void sub_805D2C0(u8 secondaryId);
|
|
u8 GetPlayerAvatarObjectId(void);
|
|
u8 PlayerGetZCoord(void);
|
|
u8 GetPlayerAvatarGraphicsIdByCurrentState(void);
|
|
void sub_805CB70(void);
|
|
void sub_805CB04(bool8);
|
|
void sub_805DC04(void);
|
|
void sub_805DAB0(void);
|
|
bool32 sub_805DAD0(void);
|
|
bool32 sub_805DC24(void);
|
|
bool8 PartyHasMonWithSurf(void);
|
|
bool8 IsPlayerSurfingNorth(void);
|
|
void player_get_pos_including_state_based_drift(s16 *x, s16 *y);
|
|
void sub_805CBE8(void);
|
|
|
|
#endif //GUARD_FIELD_PLAYER_AVATAR_H
|