blob: d4231314594faca7a135b4ab000ce315fe86d7d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <cstdint>
#include "Component.h"
#include "api/Color.h"
#include "util/log.h"
#include "Camera.h"
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(); }
|