mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
15 lines
161 B
C++
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
|