Files
omath/include/omath/engines/cry_engine/mesh.hpp
2026-02-19 06:35:08 +03:00

12 lines
254 B
C++

//
// Created by Vladislav on 09.11.2025.
//
#pragma once
#include "constants.hpp"
#include "omath/3d_primitives/mesh.hpp"
#include "traits/mesh_trait.hpp"
namespace omath::cry_engine
{
using Mesh = primitives::Mesh<Mat4X4, ViewAngles, MeshTrait>;
}