// Copyright (C) 2022 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // This file is part of the "Nazara Engine - Graphics module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_GRAPHICS_COMPONENTS_CAMERACOMPONENT_HPP #define NAZARA_GRAPHICS_COMPONENTS_CAMERACOMPONENT_HPP #include #include namespace Nz { class NAZARA_GRAPHICS_API CameraComponent : public Camera { public: using Camera::Camera; CameraComponent(const CameraComponent& camera) = default; CameraComponent(CameraComponent&& camera) noexcept = default; ~CameraComponent() = default; CameraComponent& operator=(const CameraComponent& camera) = default; CameraComponent& operator=(CameraComponent&& camera) noexcept = default; }; } #include #endif // NAZARA_GRAPHICS_COMPONENTS_CAMERACOMPONENT_HPP