diff options
| author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-08 11:44:21 +0100 | 
|---|---|---|
| committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-08 11:44:21 +0100 | 
| commit | 9432900158e6a31815345fcf0af8d28ae34c6da9 (patch) | |
| tree | 36f799da46ba8f5e921349d0f004b08d6d2f29ea /src/crepe/api/Camera.cpp | |
| parent | 1c4156ee127b14760ed3b1a0cd16ad12180c7ac6 (diff) | |
code style
Diffstat (limited to 'src/crepe/api/Camera.cpp')
| -rw-r--r-- | src/crepe/api/Camera.cpp | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/src/crepe/api/Camera.cpp b/src/crepe/api/Camera.cpp new file mode 100644 index 0000000..46a56b2 --- /dev/null +++ b/src/crepe/api/Camera.cpp @@ -0,0 +1,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(); }  |