diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-07 00:57:19 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-07 00:57:19 -0600 |
commit | 028cf5d33d99274deea9567159a4eb07c13ef85c (patch) | |
tree | b2d9f0ae8fb640fdbe1a41114c7c8314f9223103 /src/playerCamera.h | |
parent | 416a5cbab21c480ae9e85b07fd9424452cbcb611 (diff) |
This fucker is flying
Diffstat (limited to 'src/playerCamera.h')
-rw-r--r-- | src/playerCamera.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/playerCamera.h b/src/playerCamera.h new file mode 100644 index 0000000..960c30d --- /dev/null +++ b/src/playerCamera.h @@ -0,0 +1,11 @@ +#include "gameCommon.h" + +#ifndef PLAYER_CAMERA_H +#define PLAYER_CAMERA_H + +#define CAMERA_DIS 10.0 + +void initPlayerCamera(Camera3D * camera); +void updatePlayerCamera(Camera3D * camera, Game * game); + +#endif |