blob: d225083c253efd075a71622973f00e97ad6072b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __PLAYER_H
#define __PLAYER_H
#include <common.h>
#include <game.h>
extern "C" dStageActor_c* GetSpecificPlayerActor(int number);
char NearestPlayer(dStageActor_c* actor);
#endif
|