platform-test/camera.h

16 lines
221 B
C
Raw Normal View History

//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