diff options
| author | Xavier Del Campo <xavi.dcr@gmail.com> | 2017-02-04 14:49:08 +0100 |
|---|---|---|
| committer | Xavier Del Campo <xavi.dcr@gmail.com> | 2017-02-04 14:49:08 +0100 |
| commit | 189ecf754d0c8131464bfdff98fb56e7752556b1 (patch) | |
| tree | 89e7d02128bbc7b2d3f5c19a3da14ec14291982a /Source/Camera.h | |
| download | airport-189ecf754d0c8131464bfdff98fb56e7752556b1.tar.gz | |
Initial commit
Diffstat (limited to 'Source/Camera.h')
| -rwxr-xr-x | Source/Camera.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Source/Camera.h b/Source/Camera.h new file mode 100755 index 0000000..8e6866f --- /dev/null +++ b/Source/Camera.h @@ -0,0 +1,28 @@ +#ifndef __CAM_HEADER__ +#define __CAM_HEADER__ + +/* ************************************* + * Includes + * *************************************/ + +#include "Global_Inc.h" +#include "System.h" +#include "Pad.h" +#include "GameStructures.h" + +/* ************************************* + * Defines + * *************************************/ + +/* ************************************* + * Global prototypes + * *************************************/ + +void CameraInit(TYPE_PLAYER * ptrPlayer); +void CameraHandler(TYPE_PLAYER * ptrPlayer); +void CameraApplyCoordinatesToSprite(TYPE_PLAYER * ptrPlayer, GsSprite * spr); +void CameraApplyCoordinatesToRectangle(TYPE_PLAYER * ptrPlayer, GsRectangle * rect); +TYPE_ISOMETRIC_POS CameraGetIsoPos(TYPE_PLAYER * ptrPlayer); +void CameraMoveToIsoPos(TYPE_PLAYER * ptrPlayer, TYPE_ISOMETRIC_POS ptrIsoPos); + +#endif //__CAM_HEADER__ |
