sculpto
camera_component.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file camera_component.h
3 * \brief Application scene system object camera component class implementation module.
4 *
5 * \author Sabitov Kirill
6 * \date 02 July 2022
7 *********************************************************************/
8
9#pragma once
10
12
13namespace scl
14{
17 {
24 bool IsPrimary { false };
25
26 camera_component() = default;
27 camera_component(const camera_component &Other) = default;
28 camera_component(const camera &Camera, bool IsPrimary = false) :
30 ~camera_component() = default;
31 };
32}
Renderer virtual camer class definiton module.
Definition: base.h:33
camera_component(const camera &Camera, bool IsPrimary=false)
camera_component(const camera_component &Other)=default
camera_component()=default
~camera_component()=default