aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Camera.cpp
blob: 5835bdd289547c93c6ac4e5d25afe5f504e7654c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "util/Log.h"

#include "Camera.h"
#include "Color.h"
#include "Component.h"

using namespace crepe;

Camera::Camera(game_object_id_t id, const Color & bg_color)
	: Component(id),
	  bg_color(bg_color) {
	dbg_trace();
}

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