mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-02 09:02:18 +00:00
22 lines
277 B
C
22 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
|