about summary refs log tree commit diff
path: root/src/game/client/components/camera.hpp
blob: 1cb05f5bff393f3a3cb4ae58243c97ad1a249e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <base/vmath.hpp>
#include <game/client/component.hpp>

class CAMERA : public COMPONENT
{	
public:
	vec2 center;
	float zoom;

	CAMERA();
	virtual void on_render();
};