added mesh class, added mesh trair

This commit is contained in:
2025-11-09 22:10:56 +03:00
parent 4fe001b102
commit 353fb290b7
8 changed files with 102 additions and 60 deletions
@@ -0,0 +1,12 @@
//
// 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, float>;
}