blob: 3a74b3b1003040f0922da8c0de7a439268d0a9db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// 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
|