12 lines
184 B
C++
12 lines
184 B
C++
#pragma once
|
|
|
|
#include "glm/glm.hpp"
|
|
|
|
namespace zgl
|
|
{
|
|
using model_matrix_handle = glm::mat4x4;
|
|
|
|
using view_matrix_handle = glm::mat4x4;
|
|
|
|
using projection_matrix_handle = glm::mat4x4;
|
|
} |