2026-07-17 15:30:29 +01:00
|
|
|
#ifndef HYDRAMESH
|
|
|
|
|
#define HYDRAMESH
|
|
|
|
|
#include "../HydraDefines.h"
|
|
|
|
|
#include "StandardVertex.h"
|
|
|
|
|
|
|
|
|
|
struct HydraMesh
|
|
|
|
|
{
|
|
|
|
|
HydraID mesh_id = INVALID_HYDRA_ID;
|
|
|
|
|
std::vector<StandardVertex> vertexes;
|
|
|
|
|
std::vector<uint32_t> indexes;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* HYDRAMESH */
|