diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-08 20:00:21 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-08 20:00:21 +0100 |
commit | 7817c85e84560933a33ad86ec3f9ca3d48d327d5 (patch) | |
tree | c309b9f779ca33f01d5755222a56ffca517baef4 /src/crepe/api/Camera.cpp | |
parent | 0feda3d123ff99a1b9e41837482268bebfd9140a (diff) | |
parent | ac8a58a2a16118ea4c40fcc533c3420edde45122 (diff) |
Merge branch 'niels/cleanup' of github.com:lonkaars/crepe
Diffstat (limited to 'src/crepe/api/Camera.cpp')
-rw-r--r-- | src/crepe/api/Camera.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/crepe/api/Camera.cpp b/src/crepe/api/Camera.cpp new file mode 100644 index 0000000..dbbfb32 --- /dev/null +++ b/src/crepe/api/Camera.cpp @@ -0,0 +1,18 @@ + +#include <cstdint> + +#include "util/log.h" + +#include "Component.h" +#include "Color.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(); } |