about summary refs log tree commit diff
path: root/src/game/client/components/camera.h
blob: 9654bdf688993061c0b706255379632fcba14a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef GAME_CLIENT_COMPONENTS_CAMERA_H
#define GAME_CLIENT_COMPONENTS_CAMERA_H
#include <base/vmath.h>
#include <game/client/component.h>

class CCamera : public CComponent
{	
public:
	vec2 m_Center;
	float m_Zoom;

	CCamera();
	virtual void OnRender();
};

#endif