Files
omath/include/omath/engines/source_engine/mesh.hpp
2025-11-29 16:28:06 +03:00

12 lines
257 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::source_engine
{
using Mesh = primitives::Mesh<Mat4X4, ViewAngles, MeshTrait>;
}