added other collision types

This commit is contained in:
2025-11-09 22:39:09 +03:00
parent 7d6309c0dd
commit 369f2ee582
11 changed files with 157 additions and 1 deletions

View File

@@ -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::iw_engine
{
using Mesh = primitives::Mesh<Mat4X4, ViewAngles, MeshTrait, float>;
}