//Camera class header #ifndef __CAMERA_H_INCLUDED__ #define __CAMERA_H_INCLUDED__ class Camera{ public: void update(int playerX, int playerY); int getPosX(); int getPosY(); private: int posX, posY; }; #endif