#include "gameCommon.h"

#ifndef PLAYER_CAMERA_H
#define PLAYER_CAMERA_H

#define CAMERA_DIS 5.0

void initPlayerCamera(Camera3D * camera);
void updatePlayerCamera(Camera3D * camera, Game * game);

#endif