raze/source/common/rendering/hwrenderer/data/hw_levelmesh.h
2022-07-02 10:20:11 +02:00

21 lines
277 B
C++

#pragma once
#include "tarray.h"
#include "vectors.h"
namespace hwrenderer
{
class LevelMesh
{
public:
virtual ~LevelMesh() = default;
TArray<FVector3> MeshVertices;
TArray<int> MeshUVIndex;
TArray<uint32_t> MeshElements;
TArray<int> MeshSurfaces;
};
} // namespace