Graphics/CameraComponent: Add remaining features

This commit is contained in:
Jérôme Leclercq
2021-07-10 14:27:38 +02:00
parent 488ccf9648
commit ae364934bb
5 changed files with 233 additions and 14 deletions

View File

@@ -9,6 +9,7 @@
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Graphics/Config.hpp>
#include <Nazara/Math/Rect.hpp>
namespace Nz
{
@@ -24,6 +25,7 @@ namespace Nz
virtual const RenderTarget& GetRenderTarget() = 0;
virtual ViewerInstance& GetViewerInstance() = 0;
virtual const ViewerInstance& GetViewerInstance() const = 0;
virtual const Recti& GetViewport() const = 0;
};
}