Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
RenderViewData.hpp
1 #pragma once
2
3#include <Common/Math.hpp>
4#include <Common/Rect.hpp>
5
6namespace Grindstone::Rendering {
8 public:
9 Math::Matrix4 projectionMatrix;
10 Math::Matrix4 viewMatrix;
11 Math::IntRect2D renderArea;
12
13 }; // struct RenderViewData
14} // namespace Grindstone::Rendering
Definition Rect.hpp:33
Definition RenderViewData.hpp:7