mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 12:08:20 +00:00
14 lines
177 B
C++
14 lines
177 B
C++
#include <base/vmath.hpp>
|
|
#include <game/client/component.hpp>
|
|
|
|
class CAMERA : public COMPONENT
|
|
{
|
|
public:
|
|
vec2 center;
|
|
float zoom;
|
|
|
|
CAMERA();
|
|
virtual void on_render();
|
|
};
|
|
|