14 lines
240 B
C
14 lines
240 B
C
#ifndef PLAYER_C_H
|
|
#define PLAYER_C_H
|
|
|
|
#include "../entity.h"
|
|
#include "../../client_source/client.h"
|
|
#include "../world.h"
|
|
#include "../player/player_data.h"
|
|
|
|
|
|
entity* CreatePlayerCharecter(player_data pd, client* cli ,world* w);
|
|
|
|
|
|
#endif
|