mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
18 lines
235 B
C
18 lines
235 B
C
#ifndef M_PLAYER_LIB_H
|
|
#define M_PLAYER_LIB_H
|
|
|
|
#include "types.h"
|
|
#include "m_player.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern PLAYER_ACTOR* get_player_actor_withoutCheck(GAME_PLAY* play);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|