aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Camera.cpp
blob: 46a56b2ce5732eb43d32eb6f45f88fc05481c1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "Camera.h"
#include "Component.h"
#include "api/Color.h"
#include "util/log.h"
#include <cstdint>

using namespace crepe;

Camera::Camera(uint32_t id, const Color& color) : Component(id), bg_color(color), aspect_width(640), aspect_height(480), zoom(1), x(0),y(0){
	dbg_trace();
}

Camera::~Camera() { dbg_trace(); }