12 lines
197 B
C
12 lines
197 B
C
#ifndef PLAYER_E_H
|
|
#define PLAYER_E_H
|
|
|
|
#include "../entity.h"
|
|
#include "../world.h"
|
|
#include "../player/player_data.h"
|
|
|
|
entity* CreatePlayerEntity(player_data pd, int serverfd, world* w);
|
|
|
|
|
|
#endif
|