Files
MacroLibX/runtime/Includes/Renderer/ViewerData.h
2024-09-02 09:44:42 +02:00

15 lines
161 B
C++

#ifndef __MLX_VIEWER_DATA__
#define __MLX_VIEWER_DATA__
#include <Maths/Mat4.h>
namespace mlx
{
struct ViewerData
{
Mat4f projection_matrix;
};
}
#endif